AI Proxy Configuration
Static Configurations
APISIX 3.18.0 uses ngx_http_ffi_client by default for upstream requests from ai-proxy, ai-proxy-multi, and ai-request-rewrite. Set http_client to lua-resty-http to use the Lua client instead. API7 Gateway 3.9 and 3.10 use the Lua client and do not expose this setting.
To use the Lua client in an APISIX host or Docker deployment, configure the following setting:
plugin_attr:
ai-proxy:
http_client: lua-resty-httpThen reload APISIX for the change to take effect.
Export the full effective values for the installed APISIX release:
helm get values <release-name> -n <namespace> --all -o yaml > values.yamlAdd or update the following value:
apisix:
pluginAttrs:
ai-proxy:
http_client: lua-resty-httpThen apply the values file with the chart used for this APISIX release:
helm upgrade <release-name> apisix/apisix -n <namespace> -f values.yamlParameters
See plugin common configurations for configuration options available to all plugins.
-
provider—string· requiredValid values:
openai,deepseek,azure-openai,aimlapi,gemini,vertex-ai,anthropic,openrouter,bedrock,openai-compatibleLLM service provider.
When set to
openai, the plugin sends detected Chat Completions, Responses API, and Embeddings requests to their corresponding OpenAI endpoints.When set to
deepseek, the plugin will proxy requests tohttps://api.deepseek.com/chat/completions.When set to
gemini(available from APISIX 3.15.0 and Enterprise 3.9.2), the plugin will proxy requests tohttps://generativelanguage.googleapis.com/v1beta/openai/chat/completions. If you are proxying requests to an embedding model, you should configure the embedding model endpoint in theoverride.When set to
vertex-ai(available from APISIX 3.15.0 and Enterprise 3.9.2), the plugin proxies requests to Google Cloud Vertex AI. For chat completions, the plugin will proxy requests tohttps://{region}-aiplatform.googleapis.com/v1beta1/projects/{project_id}/locations/{region}/endpoints/openapi/chat/completions. For embeddings, the plugin will proxy requests tohttps://{region}-aiplatform.googleapis.com/v1/projects/{project_id}/locations/{region}/publishers/google/models/{model}:predict. These require configuringprovider_confwithproject_idandregion. Alternatively, you can configureoverridefor a custom endpoint.When set to
anthropic(available from APISIX 3.15.0 and Enterprise 3.9.2), the plugin sends detected Chat Completions requests tohttps://api.anthropic.com/v1/chat/completionsand native Anthropic Messages requests tohttps://api.anthropic.com/v1/messages.When set to
openrouter(available from APISIX 3.15.0 and Enterprise 3.9.2), the plugin will proxy requests tohttps://openrouter.ai/api/v1/chat/completions.When set to
bedrock(available from API7 Enterprise 3.9.12 and APISIX 3.17.0), the plugin proxies requests to AWS Bedrock using the Converse API. Requires configuringauth.awswith IAM credentials andprovider_conf.regionwith the AWS region. Supports both non-streaming and streaming (ConverseStream) whenstreamis set totruein the request body.When set to
aimlapi(available from APISIX 3.14.0 and Enterprise 3.8.17), the plugin uses the OpenAI-compatible driver and proxies the request tohttps://api.aimlapi.com/v1/chat/completions.When set to
openai-compatible, the plugin proxies requests to the custom endpoint configured inoverride.When set to
azure-openai, the plugin also proxies requests to the custom endpoint configured inoverrideand additionally removes themodelparameter from user requests. -
auth—object· requiredAuthentication configurations.
-
header—object· optionalAuthentication headers.
-
query—object· optionalAuthentication query parameters.
-
gcp—object· optionalGCP service account authentication for Vertex AI. Available in API7 Enterprise from 3.9.2 and APISIX from version 3.17.0.
-
service_account_json—string· optionalGCP service account JSON content used for authentication. This can be configured using this parameter or by setting the
GCP_SERVICE_ACCOUNTenvironment variable. -
max_ttl—integer· optionalMaximum TTL for GCP access token caching, in seconds.
-
expire_early_secs—integer· optional · default:60Number of seconds to expire the access token before its actual expiration time. This prevents edge cases where tokens expire during active requests.
-
-
aws—object· optionalAWS IAM credentials for SigV4 signing. Required when
providerisbedrock(for Bedrock,auth.awsis sufficient andauth.header/auth.queryare not required). Available in API7 Enterprise from version 3.9.12 and APISIX from version 3.17.0.-
access_key_id—string· requiredAWS IAM access key ID.
-
secret_access_key—string· requiredAWS IAM secret access key.
-
session_token—string· optionalAWS session token for temporary credentials (e.g. from STS AssumeRole).
-
-
-
options—object· optionalModel configurations.
In addition to
model, you can configure additional parameters and they will be forwarded to the upstream LLM service in the request body. For instance, if you are working with OpenAI, you can configure additional parameters such astemperature,top_p, andstream. See your LLM provider's API documentation for more available options.-
model—string· optionalName of the LLM model, such as
gpt-4orgpt-3.5. See your LLM provider's API documentation for more available models.
-
-
provider_conf—object· optionalProvider-specific configuration. Required when
providerisbedrock. Whenproviderisvertex-ai, configure eitherprovider_conforoverride.endpoint.Available in API7 Enterprise from 3.9.2 and APISIX from version 3.17.0.
-
project_id—string· optionalGoogle Cloud Project ID. Required when
providerisvertex-ai. -
region—string· requiredCloud region. For
vertex-ai, this is the GCP region. Forbedrock, this is the AWS region (e.g.us-east-1).
-
-
override—object· optionalOverride setting.
-
endpoint—string· optionalLLM provider endpoint. Required when
providerisopenai-compatible. -
llm_options—object· optionalProvider-aware LLM option overrides. Available in API7 Enterprise from version 3.9.10 and APISIX from version 3.17.0.
-
max_tokens—integer· optionalMaximum number of output tokens. The gateway automatically maps this to the correct field name for the target provider (e.g.
max_completion_tokensfor OpenAI Chat,max_output_tokensfor OpenAI Responses API). Always force-overwrites the client value.
-
-
request_body—object· optionalPer target-protocol request body overrides. Keys are target protocol names (
openai-chat,openai-responses,openai-embeddings,anthropic-messages,bedrock-converse,passthrough); values are partial request bodies that are deep-merged into the outgoing body (objects merged recursively, arrays and scalars replaced wholesale). Available in API7 Enterprise from version 3.9.10 and APISIX from version 3.17.0. -
request_body_force_override—boolean· optional · default:falseWhen
false(default), client request body fields take priority andrequest_bodyoverride values only fill in missing fields. Whentrue,request_bodyoverride values forcefully overwrite client fields. Available in API7 Enterprise from version 3.9.10 and APISIX from version 3.17.0.
-
-
logging—object· optionalLogging configurations. These configurations apply to access logs and logs sent to logging plugins, and do not affect the error log.
-
summaries—boolean· optional · default:falseIf true, add an
llm_summaryobject to logger entries with model, latency, and token usage. In API7 Enterprise 3.9.18 and 3.10.5, and in APISIX 3.18.0, the summary also includes stream status, tool count and usage, end-user ID, cache read and creation tokens, reasoning tokens, and content risk level when available. -
payloads—boolean· optional · default:falseIf true, log request and response payload.
-
-
timeout—integer· optional · default:30000Valid values: between 1 and 600000 inclusive
Timeout in milliseconds for each connect, send, or blocking read operation to the LLM service. It does not limit the total duration of a streaming response; use
max_stream_duration_msfor that limit. -
max_req_body_size—integer· optional · default:67108864Maximum request body size in bytes that the plugin reads into memory (default 67108864 bytes, which is 64 MiB). Requests with a body larger than this limit are rejected with HTTP 413. This prevents unbounded memory buffering of large request bodies. Available in API7 Enterprise from versions 3.9.14 and 3.10.1 in their respective release lines, and APISIX from version 3.17.0.
-
keepalive—boolean· optional · default:trueIf true, keep the connection alive when requesting the LLM service.
-
keepalive_timeout—integer· optional · default:60000Valid values: greater than or equal to 1000
Keepalive timeout in milliseconds when requesting the LLM service.
-
keepalive_pool—integer· optional · default:30Valid values: greater than or equal to 1
Keepalive pool size for when connecting with the LLM service.
-
ssl_verify—boolean· optional · default:trueIf true, verify the LLM service's certificate.
-
max_stream_duration_ms—integer· optionalMaximum wall-clock duration, in milliseconds, for a streaming AI response. The limit is optional. When reached, the gateway closes the connection; if output has already started, the stream ends without a protocol terminator such as
[DONE],message_stop, orresponse.completed. Enforcement occurs between upstream reads, so the final chunk can exceed the configured duration. Available in API7 Enterprise from version 3.9.10 and APISIX from version 3.17.0. -
max_response_bytes—integer· optionalMaximum total bytes read from the upstream for one streaming or non-streaming AI response. The limit is optional and checked between upstream reads, so the final chunk can exceed it. If the limit is exceeded before output starts, the gateway returns
502 Bad Gateway; after output starts, the gateway closes the stream without a protocol terminator. Available in API7 Enterprise from version 3.9.10 and APISIX from version 3.17.0. -
streaming_flush_interval_ms—integer· optional · default:10Background flush interval in milliseconds for streaming responses. A positive value starts a background thread that flushes output periodically to bound client latency when upstreams burst multiple tokens at once. Set to 0 to flush each chunk synchronously inline. Available in API7 Enterprise from version 3.9.13 and APISIX from version 3.17.0.