Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/srcnalt/openai-unity
An unofficial OpenAI Unity Package that aims to help you use OpenAI API directly in Unity Game engine.
https://github.com/srcnalt/openai-unity
chatgpt dalle openai openai-api unity unity3d whisper
Last synced: 30 days ago
JSON representation
An unofficial OpenAI Unity Package that aims to help you use OpenAI API directly in Unity Game engine.
- Host: GitHub
- URL: https://github.com/srcnalt/openai-unity
- Owner: srcnalt
- License: mit
- Created: 2023-01-07T21:18:17.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-18T20:30:05.000Z (4 months ago)
- Last Synced: 2024-10-09T19:20:18.792Z (30 days ago)
- Topics: chatgpt, dalle, openai, openai-api, unity, unity3d, whisper
- Language: C#
- Homepage:
- Size: 1.09 MB
- Stars: 700
- Watchers: 15
- Forks: 153
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
- awesome-ChatGPT-repositories - OpenAI-Unity - An unofficial OpenAI Unity Package that aims to help you use OpenAI API directly in Unity Game engine. (Unity)
README
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/sgt3v.svg?style=social&label=Follow%20%40sgt3v)](https://twitter.com/sgt3v)
## OpenAI Unity Package
An unofficial Unity package that allows you to use the OpenAI API directly in the Unity game engine.## How To Use
### Youtube Tutorials
You can find dedicated video tutorials for how to use this package in this YouTube playlist.https://www.youtube.com/playlist?list=PLrE-FZIEEls1-c7QifZYzeq50Id08FcJo
### Importing the Package
To import the package, follow these steps:
- Open Unity 2019 or later
- Go to `Window > Package Manager`
- Click the `+` button and select `Add package from git URL`
- Paste the repository URL https://github.com/srcnalt/OpenAI-Unity.git and click `Add`### Setting Up Your OpenAI Account
To use the OpenAI API, you need to have an OpenAI account. Follow these steps to create an account and generate an API key:- Go to https://openai.com/api and sign up for an account
- Once you have created an account, go to https://beta.openai.com/account/api-keys
- Create a new secret key and save it### Saving Your Credentials
To make requests to the OpenAI API, you need to use your API key and organization name (if applicable). To avoid exposing your API key in your Unity project, you can save it in your device's local storage.To do this, follow these steps:
- Create a folder called .openai in your home directory (e.g. `C:User\UserName\` for Windows or `~\` for Linux or Mac)
- Create a file called `auth.json` in the `.openai` folder
- Add an api_key field and a organization field (if applicable) to the auth.json file and save it
- Here is an example of what your auth.json file should look like:```json
{
"api_key": "sk-...W6yi",
"organization": "org-...L7W"
}
```You can also pass your API key into `OpenAIApi` ctor when creating an instance of it but again, this is not recommended!
```csharp
var openai = new OpenAIApi("sk-Me8...6yi");
```**IMPORTANT:** Your API key is a secret.
Do not share it with others or expose it in any client-side code (e.g. browsers, apps).
If you are using OpenAI for production, make sure to run it on the server side, where your API key can be securely loaded from an environment variable or key management service.### Making Requests to OpenAPI
You can use the `OpenAIApi` class to make async requests to the OpenAI API.All methods are asynchronous and can be accessed directly from an instance of the `OpenAIApi` class.
Here is an example of how to make a request:
```csharp
private async void SendRequest()
{
var req = new CreateChatCompletionRequest
{
Model = "gpt-3.5-turbo",
Messages = new List()
{
new ChatMessage()
{
Role = "user",
Content = "Hello!"
}
}
};
var res = await openai.CreateChatCompletion(req);
}
```To make a stream request, you can use the `CreateCompletionAsync` and `CreateChatCompletionAsync` methods.
These methods are going to set `Stream` property of the request to `true` and return responses through an onResponse callback.
In this case text responses are stored in `Delta` property of the `Choices` field in the Chat Completion.```csharp
var req = new CreateChatCompletionRequest{
Model = "gpt-3.5-turbo",
Messages = new List
{
new ChatMessage()
{
Role = "user",
Content = "Write a 100 word long short story in La Fontaine style."
}
},
Temperature = 0.7f,
};
openai.CreateChatCompletionAsync(req,
(responses) => {
var result = string.Join("", responses.Select(response => response.Choices[0].Delta.Content));
Debug.Log(result);
},
() => {
Debug.Log("completed");
},
new CancellationTokenSource()
);
```### Sample Projects
This package includes two sample scenes that you can import via the Package Manager:- **ChatGPT sample:** A simple ChatGPT like chat example.
- **DallE sample:** A DALL.E text to image generation example.### Known Issues
- **Can't See the Image Result in WebGL Builds:** Due to CORS policy of OpenAI image storage in local WebGL builds you will get the generated image's URL however it will not be
downloaded using UnityWebRequest until you run it out of localhost, on a server.- **Streamed Response is just blank in WebGL Build:** Unity 2020 WebGL has a bug where stream responses return empty. You can update and try with a newer version of Unity.
### Supported Unity Versions for WebGL Builds
The following table shows the supported Unity versions for WebGL builds:| Unity Version | Windows | Linux | MacOS | WebGL | Android | IOS | Oculus 2|
| --- | --- | --- | --- | --- | --- | --- | --- |
| 2022.3.x | ✅ | ⚠️ | ⚠️ | ⚠️ | ✅ | ✅ | ✅ | ✅ |
| 2021.3.x | ✅ | ⚠️ | ⚠️ | ⚠️ | ✅ | ✅ | ✅ | ⚠️ |
| 2020.3.x | ✅ | ⚠️ | ⚠️ | ⚠️ | ✅ | ✅ | ✅ | ⚠️ |
| 2019.4.x | ✅ | ⚠️ | ⚠️ | ⚠️ | ⚠️ | ⚠️ | ⚠️ | ⚠️ || | | |
| --- | --- | --- |
| ✅ = Supported | ⚠️ = Not Tested | ⛔ = Not Supported |Please report any issues you encounter with builds.
### Further Reading
For more information on how to use the various request parameters, please refer to the OpenAI documentation: https://platform.openai.com/docs/api-reference