This guide walks you through setting up the AI Proxy plugin with OpenAI.

For all providers, the Kong AI Proxy plugin attaches to route entities.

It can be installed into one route per operation, for example:

  • OpenAI chat route
  • Cohere chat route
  • Cohere completions route

Each of these AI-enabled routes must point to a null service. This service doesn’t need to map to any real upstream URL, it can point somewhere empty (for example, http://localhost:32000), because the AI Proxy plugin overwrites the upstream URL. This requirement will be removed in a later Kong revision.

Prerequisites

  • OpenAI account and subscription
  • You need a service to contain the route for the LLM provider. Create a service first:
  1. curl -X POST http://localhost:8001/services \
  2. --data "name=ai-proxy" \
  3. --data "url=http://localhost:32000"

Remember that the upstream URL can point anywhere empty, as it won’t be used by the plugin.

Provider configuration

Set up route and plugin

After creating an OpenAI account, and purchasing a subscription, you can then create an AI Proxy route and plugin configuration.

Kong Admin API

YAML

Create a route:

  1. curl -X POST http://localhost:8001/services/ai-proxy/routes \
  2. --data "name=openai-chat" \
  3. --data "paths[]=~/openai-chat$"

Enable and configure the AI Proxy plugin for OpenAI, replacing the <openai_key> with your own API key:

  1. curl -X POST http://localhost:8001/routes/openai-chat/plugins \
  2. --data "name=ai-proxy" \
  3. --data "config.route_type=llm/v1/chat" \
  4. --data "config.auth.header_name=Authorization" \
  5. --data "config.auth.header_value=Bearer <openai_key>" \
  6. --data "config.model.provider=openai" \
  7. --data "config.model.name=gpt-4" \
  8. --data "config.model.options.max_tokens=512" \
  9. --data "config.model.options.temperature=1.0"
  1. name: openai-chat
  2. paths:
  3. - "~/openai-chat$"
  4. methods:
  5. - POST
  6. plugins:
  7. - name: ai-proxy
  8. config:
  9. route_type: "llm/v1/chat"
  10. auth:
  11. header_name: "Authorization"
  12. header_value: "Bearer <openai_key>" # add your own OpenAI API key
  13. model:
  14. provider: "openai"
  15. name: "gpt-4"
  16. options:
  17. max_tokens: 512
  18. temperature: 1.0

Test the configuration

Make an llm/v1/chat type request to test your new endpoint:

  1. curl -X POST http://localhost:8000/openai-chat \
  2. -H 'Content-Type: application/json' \
  3. --data-raw '{ "messages": [ { "role": "system", "content": "You are a mathematician" }, { "role": "user", "content": "What is 1+1?"} ] }'

Previous Set up AI Proxy with Mistral

Next Set up AI Proxy with Bedrock