Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/KellanM/OpenAI-Api-Unreal
Integration for the OpenAI Api in Unreal Engine
https://github.com/KellanM/OpenAI-Api-Unreal
Last synced: about 1 month ago
JSON representation
Integration for the OpenAI Api in Unreal Engine
- Host: GitHub
- URL: https://github.com/KellanM/OpenAI-Api-Unreal
- Owner: KellanM
- License: mit
- Created: 2021-05-12T21:52:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-12T19:30:59.000Z (7 months ago)
- Last Synced: 2024-08-02T06:14:11.756Z (4 months ago)
- Language: C++
- Size: 62.5 KB
- Stars: 657
- Watchers: 38
- Forks: 144
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-ChatGPT-Prompts-CN - OpenAI-Api-Unreal
README
# OpenAI API Plugin
The **OpenAIApi Plugin** gives you access to the **OpenAI API** in **Unreal Engine**. It is compatible with 4.26, 4.27, 5.0, 5.1, 5.2, and 5.3This is a community Plugin. No affiliation with OpenAI
## Installation
The recommended way to install the plugin is to use pre-built binaries.
- Download the Plugin [here](https://drive.google.com/drive/folders/16FFYDf0U--nxUocQVXCIvSo-Sa0Tnndl?usp=sharing)
- Create a `Plugins` folder under your project folder
- Copy the plugin to it, so you have `YourProject/Plugins/OpenAIAPI`## Quick Start
See [Video](https://www.youtube.com/watch?v=hUv2_gis_9I)
[![](http://img.youtube.com/vi/hUv2_gis_9I/0.jpg)](http://www.youtube.com/watch?v=hUv2_gis_9I "OpenAI API Quick Start Tutorial")
> **NOTE**: This tutorial is out of date. Updating it soon to show how you can use this plugin to:
Generate images at runtime using `DALL·E 2`.
Transcribe speech in any language using `Whisper v2-large`.
Use the chat endpoint to power an NPC with `GPT-4` and `GPT-3.5-Turbo`.## Types of Authentication
There are two ways to set the Api Key
- Assign the Api key directly in blueprints.- Set the Api Key as an environment variable
![](https://i.imgur.com/HF2tdBz.png)
> **ADVICE**: Pay attention to security and encrypt your assets before packaging.![](https://i.imgur.com/0fpPVlV.png)
> **ADVICE**: Create the environment variable `OPENAI_API_KEY` and use your Api key as the value.## Blueprint Nodes
#### OpenAI Call Completions- This async node sends an HTTP request using your `engine`, `prompt`, and `settings`.
![](https://i.imgur.com/vGo2wta.png)
> **NOTE**: Async nodes can only be called from a blueprint's `Event Graph`.
#### Make Completion Settings- This node allows you to set the `Request body` parameters.
![](https://i.imgur.com/xS4MMrI.png)
> **NOTE**: The extra parameter `Start Sequence` injects text at the beginning of your prompt.
>
> `stream` will be supported soon
#### Break Completion- This node is used to access the values included in a `completion` or `choice`
![](https://i.imgur.com/dydM8Sd.png)
## Usage
This example shows OpenAI's OpenAI's completions endpoint in blueprints. (GPT-3)![](https://i.imgur.com/DNKp0bW.png)
This example show you how to use OpenAI's chat endpoint in blueprints. (GPT-4 / GPT-3.5-Turbo)
![](https://i.imgur.com/hHFSp4b.png)
This example shows you how to generate a 1024x1024 image using DALL·E 2 in blueprints.
![](https://i.imgur.com/CciUUF6.png)
This example shows you how to record and transcribe speech using Whisper v2-Large in blueprints.
![](https://i.imgur.com/ameqz1L.png)
## References
- [OpenAI's API Engine Documentation](https://beta.openai.com/docs/engines)
- [OpenAI's API Reference](https://beta.openai.com/docs/api-reference/completions)## Supported Platforms
Windows, Mac, Android