OpenAIAPI.cs
OpenAIAPI Class
The OpenAIAPI class is a ScriptableObject designed to store the OpenAI API key within Unity. This approach allows developers to manage API keys conveniently through the Unity Editor, making them accessible for runtime scripts without hardcoding sensitive information into the source code.
Namespace: Indie.Localization
Fields:
apiKey: A string that stores the OpenAI API key. This key is used for authenticating requests to the OpenAI API.
Usage:
Creating the Asset: To create an OpenAIAPI asset, right-click in the Project window in Unity, navigate to Create > Indie > Localization > OpenAIAPIKey, and click it. This will create a new asset in your selected folder, which can then be named and configured with your API key.
Setting the API Key: After creating the asset, you can set the apiKey by selecting the asset in the Unity Editor and entering your OpenAI API key in the Inspector window.
Last updated