OpenAI-Unity icon indicating copy to clipboard operation
OpenAI-Unity copied to clipboard

An unofficial OpenAI Unity Package that aims to help you use OpenAI API directly in Unity Game engine.

Results 32 OpenAI-Unity issues
Sort by recently updated
recently updated
newest added

Allow custom BASE_PATH, which are passed in when new OpenAIAPI.

Hi, This is a very useful package. But I noticed that your videos only covered using AWS Polly. I see OpenAI now has their own Text to Speech API, and...

I can work with the GPT3 model but when I tried to change to model name to one of the GPT4 models, the project didn't crash and didn't give any...

## Summary Text to speech feature was added to the OpenAI SDK. Addresses #103 ## Code sample This is the basic workflow for this feature: ```c# [RequireComponent(typeof(AudioSource))] public class TextToSpeech...

I frequently encounter an issue where the message doesn't transmit completely when using stream mode. Can you help?

edit DataTypes.cs ``` public struct CreateChatCompletionResponse : IResponse { public ApiError Error { get; set; } public string Model { get; set; } public string Id { get; set; }...

Does the current project here support Dall-E 3?

https://platform.openai.com/docs/assistants/overview Is this supported or any plans of supporting it?

Address #71. Needed function calling for a project, a little bit of chatGPT magic and cooked this up real quick. Maybe not the best, definitely would be best if you...