Skip to main content

How to use the plugin

The Runtime AI Chatbot Integrator simplifies AI chatbot integration into your Unreal Engine projects through a straightforward workflow:

  1. Register your API provider token
  2. Configure chat settings
  3. Send chat requests (streaming or non-streaming)

Register Provider Token

Before sending chat requests, register your API provider token using the RegisterProviderToken function.

Register Provider Token in Blueprint

Chat Request Types

The plugin supports two chat request modes for each provider:

Non-Streaming Chat Requests

Retrieve the complete response in a single call.

Send OpenAI Chat Request

Streaming Chat Requests

Receive response chunks in real-time for a more dynamic interaction.

Send OpenAI Streaming Chat Request

Error Handling

When sending chat requests, it's crucial to handle potential errors by checking the ErrorStatus in your callback. The ErrorStatus provides information about any issues that might occur during the request.

Error Handling

Cancelling Requests

The plugin allows you to cancel both streaming and non-streaming chat requests while they are in progress. This can be useful when you want to interrupt a long-running request or change the conversation flow dynamically.

Cancel Request

Best Practices

  1. Always handle potential errors by checking the ErrorStatus in your callback
  2. Be mindful of API rate limits and costs
  3. Use streaming mode for long-form or interactive conversations
  4. Consider cancelling requests that are no longer needed to manage resources efficiently

Troubleshooting

  • Verify your API credentials are correct
  • Check your internet connection