Enum for message part types.
Source
class MessagePartTypeEnum extends AbstractEnum
{
/**
* Text content.
*/
public const TEXT = 'text';
/**
* File content (inline or remote).
*/
public const FILE = 'file';
/**
* Function call request.
*/
public const FUNCTION_CALL = 'function_call';
/**
* Function response.
*/
public const FUNCTION_RESPONSE = 'function_response';
}
Changelog
| Version | Description |
|---|---|
| 0.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.