Manage LLM Proxy¶
Once you create an LLM proxy, you can manage its configuration through the proxy details page. This guide covers all management operations available for your proxy.
On This Page
Proxy Configuration:
- Provider Settings - LLM service provider and authentication
- Resources - OpenAPI specification and endpoints
- Security - Client application authentication
- Guardrails - Content protection and policies
- Get Started - API keys and gateway deployments
Lifecycle Operations:
- Save Changes - Apply configuration updates
- Delete Proxy - Remove proxy permanently
Access Proxy Details¶
-
Navigate to LLM > Proxies in the left navigation menu.
-
Click on a proxy name to open its details page.
The proxy details page displays the following information at the top:
- Proxy name (e.g., Test-Openai)
- Provider - The linked LLM service provider
- Version - The proxy version
- Last updated - Timestamp of the most recent change
The page is organized into four configuration tabs: Provider, Resources, Security, and Guardrails. On the right side, you'll find the Get Started panel with API key generation and deployed gateway information.
The Deploy to Gateway button and a delete icon are located in the top-right corner of the page.
Provider Settings¶
LLM Service Provider¶
-
Go to the Provider tab.
-
Use the Provider dropdown to select or change the linked LLM service provider.
The dropdown lists all service providers that have been configured in your workspace.
Info
Changing the provider updates related settings such as authentication and available resources.
API Key Configuration¶
If your selected provider uses API key authentication, you'll see the API Key Configuration section below the provider dropdown.
| Field | Description |
|---|---|
| Header Name | The authentication header required by the provider (e.g., X-API-Key). This field is read-only and is defined by the provider template. |
| API Key | Enter your provider's API key in this field. |
To configure:
- Enter the API key in the API Key field.
- Click Save API Key to store the credential securely.
Security Best Practices
- API keys are encrypted and stored securely
- Keys are not displayed after saving
- Store a backup copy in a secure location
- Rotate keys regularly for security
Resources¶
OpenAPI Specification¶
The OpenAPI specification defines the resources (API endpoints) available through your proxy. Depending on the provider, the specification may be automatically populated.
To import manually:
-
Go to the Resources tab.
-
Click the Import from file button.
-
Upload a JSON or YAML file containing your OpenAPI specification.
-
The proxy automatically parses the file and displays the extracted resources.
OpenAPI Format
Supports OpenAPI 3.0 and 3.1 specifications in both JSON and YAML formats.
View Resources¶
After importing, the Resources section displays the count and list of parsed resources. Each resource shows:
- HTTP Method - The HTTP method (GET, POST, PUT, DELETE, PATCH)
- Resource Path - The endpoint path (e.g.,
/v1/chat/completions) - Description - A description extracted from the OpenAPI spec
Security¶
Authentication¶
-
Go to the Security tab.
-
Configure the following authentication settings:
| Field | Description |
|---|---|
| Authentication type | Select the authentication method from the dropdown. Currently, API Key is available. |
| Key name | The name of the key that clients must provide (e.g., X-API-Key). |
| Sent in | Choose how clients send the authentication key: Header (recommended) or Query Parameter. |
- Click Save to apply the security configuration.
Best Practice
Use Header authentication for production environments. Query parameters may be logged in server access logs and browser history.
Guardrails¶
Global Guardrails¶
Global guardrails apply to all resources in the proxy.
To add a global guardrail:
-
Go to the Guardrails tab.
-
In the Global Guardrails section, click + Add Guardrail.
-
A right-side panel opens displaying the available guardrails and policies.
-
Select a guardrail from the list.
-
Configure the guardrail settings including version, parameters, and any advanced settings.
-
Click Submit to add the guardrail.
Added guardrails appear as pills showing the guardrail name and version.
Resource-wise Guardrails¶
Resource-wise guardrails apply to specific endpoints only. This section lists each resource from your OpenAPI specification, allowing you to attach guardrails to individual endpoints.
To add a resource-specific guardrail:
-
In the Resource-wise Guardrails section, find the resource you want to protect.
-
Expand the resource card and click + Add Guardrail.
-
Select and configure the guardrail (same process as global guardrails).
-
Click Submit to attach the guardrail to the resource.
Manage Guardrails¶
- View: Global guardrails appear as pills in the Global Guardrails section. Resource-specific guardrails appear under each resource card.
- Remove: Click the × icon on a guardrail pill to remove it.
Warning
After adding or removing guardrails, you must redeploy the proxy for the changes to take effect. Click Deploy to Gateway to apply your changes.
Info
Learn more about available guardrails in the Guardrails Overview. For the full list of policies and their specifications, visit the Policy Hub.
Save Changes¶
After making configuration changes across any tab (Provider, Resources, Security, Guardrails), click the Save button at the bottom-right of the page to persist your changes.
Use the Cancel button to discard all unsaved changes and revert to the last saved state.
Info
Configuration changes require a manual redeploy to take effect on deployed gateways. After saving, click Deploy to Gateway to apply your changes.
Delete Proxy¶
To delete a proxy, click the delete icon (trash icon) in the top-right corner of the proxy details page, next to the Deploy to Gateway button.
Irreversible Action
Deleting a proxy is permanent and cannot be undone.
- The proxy is immediately removed from all gateways
- All generated API keys stop working
- All configuration (resources, security, guardrails) is deleted
Before Deleting
- Ensure no applications are actively using the proxy
- Back up any important configuration settings
- Notify teams that depend on the proxy endpoints
Next Steps¶
- Policies Overview - Learn about all available policies for proxies
- Policy Hub - Browse the full catalog of available guardrails and policies