Plugin details
*Support Realtime Speech-to-Speech API* *Support GPT-o1*
*SUPPORT streaming for Text-to-Speech & Chat*
+ GPT-4o, DALL-E 3, Text-to-speech...
Bring your own key plugin.
Supported in the plugin
- ChatCompletion with GPT-o1, GPT-4o, GPT-4, GPT-3.5 (turbo supported)
- DALL-E 3
- Text-to-Speech
- Text-to-Speech Streaming
- Transcription with Whisper
- Assistant management (create, list, delete)
- Thread management (create, delete, retrieve)
- Messages management (create, retrieve)
- Run Thread with Assistants
- File management (create, retrieve, list, delete)
- Moderation (create)
- Embeddings (create)
- Text completions streaming
- FineTuning
Todo list (coming soon) :
- Better implementation of Vision model*
*Note :
You can already use Vision with the Chat Completions Action, it's a bit more tricky :
- You have to set the model to : gpt-4o-mini
- And to add images to message you will have to change a little bit the message object, example :
{ role: "user", content: [
{
"type": "text",
"text": "What’s in this image?"
},
{
"type": "image_url",
"image_url": {
"url": "image_url"
}
}
] }
it has to be a string that can be parsed in JSON by the plugin.
The end user will have to input his own API key.
API Key is Exposed in the front end !!