Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions app/docs/build/models/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ Omnigent works with any **OpenAI-compatible** or **Anthropic-compatible** gatewa
| **OpenRouter** | Claude Code | `https://openrouter.ai/api` | your OpenRouter key (`sk-or-...`) |
| **OpenRouter** | Codex / OpenAI agents | `https://openrouter.ai/api/v1` | your OpenRouter key (`sk-or-...`) |
| **Ollama** (local) | Codex / OpenAI agents | `http://localhost:11434/v1` | any value (Ollama ignores it) |
| **Gravitee** | Claude Code | `https://<your-gateway-host>/<api-context-path>` | your Gravitee API key |
| **Gravitee** | Codex / OpenAI agents | `https://<your-gateway-host>/<api-context-path>` | your Gravitee API key |

<div className="note">

Expand All @@ -96,6 +98,12 @@ and the OpenAI-agents harness, use the OpenAI-compatible `.../api/v1`.

</div>

<div className="note">

**Note:** Gravitee's [LLM Proxy](https://documentation.gravitee.io/apim/ai-agent-management/llm-proxy) accepts both the native Anthropic Messages API and OpenAI-compatible calls, so it works for either harness family through the same gateway. Omnigent delivers the key you enter here to Claude Code via `apiKeyHelper`, so configure your Gravitee API's security plan to accept that credential the same way you would for any API-key gateway — see [Gravitee's LLM Proxy docs](https://documentation.gravitee.io/apim/ai-agent-management/llm-proxy) for setup.

</div>

### Databricks

Route models through your Databricks workspace using the
Expand Down
1 change: 1 addition & 0 deletions components/GatewayLogos.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const gateways = [
{ logo: "helicone", name: "Helicone" },
{ logo: "cloudflare", name: "Cloudflare AI Gateway" },
{ logo: "kong", name: "Kong AI Gateway" },
{ logo: "gravitee", name: "Gravitee AI Gateway" },
{ logo: "vercel", name: "Vercel AI Gateway" },
{ logo: "azure", name: "Azure OpenAI" },
{ logo: "ollama", name: "Ollama" },
Expand Down
6 changes: 5 additions & 1 deletion public/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ codex login # for ChatGPT

Omnigent works with any **OpenAI-compatible** or **Anthropic-compatible** gateway:

Supported OpenAI- or Anthropic-compatible gateways include OpenRouter, LiteLLM, Ollama, Azure, vLLM, and similar providers.
Supported OpenAI- or Anthropic-compatible gateways include OpenRouter, LiteLLM, Portkey, Gravitee, Cloudflare, Kong, Ollama, Azure, vLLM, and similar providers.

`omni setup` asks for a **base URL** and a **key**. The base URL differs depending on the agent:

Expand All @@ -839,11 +839,15 @@ Supported OpenAI- or Anthropic-compatible gateways include OpenRouter, LiteLLM,
| **OpenRouter** | Claude Code | `https://openrouter.ai/api` | your OpenRouter key (`sk-or-...`) |
| **OpenRouter** | Codex / OpenAI agents | `https://openrouter.ai/api/v1` | your OpenRouter key (`sk-or-...`) |
| **Ollama** (local) | Codex / OpenAI agents | `http://localhost:11434/v1` | any value (Ollama ignores it) |
| **Gravitee** | Claude Code | `https://<your-gateway-host>/<api-context-path>` | your Gravitee API key |
| **Gravitee** | Codex / OpenAI agents | `https://<your-gateway-host>/<api-context-path>` | your Gravitee API key |

**Note:** For Claude Code, point at OpenRouter's Anthropic-compatible
endpoint (`.../api`, **not** `.../api/v1`); for Codex
and the OpenAI-agents harness, use the OpenAI-compatible `.../api/v1`.

**Note:** Gravitee's [LLM Proxy](https://documentation.gravitee.io/apim/ai-agent-management/llm-proxy) accepts both the native Anthropic Messages API and OpenAI-compatible calls, so it works for either harness family through the same gateway. Omnigent delivers the key you enter here to Claude Code via `apiKeyHelper`, so configure your Gravitee API's security plan to accept that credential the same way you would for any API-key gateway — see [Gravitee's LLM Proxy docs](https://documentation.gravitee.io/apim/ai-agent-management/llm-proxy) for setup.

### Databricks

Route models through your Databricks workspace using the
Expand Down
Binary file added public/logos/gateways/gravitee.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion scripts/generate-llms-files.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ function cleanMdx(sourcePath) {
)
.replace(
/<GatewayLogos \/>/g,
"Supported OpenAI- or Anthropic-compatible gateways include OpenRouter, LiteLLM, Ollama, Azure, vLLM, and similar providers.",
"Supported OpenAI- or Anthropic-compatible gateways include OpenRouter, LiteLLM, Portkey, Gravitee, Cloudflare, Kong, Ollama, Azure, vLLM, and similar providers.",
)
.replace(/^<ContentTabs[^\n]*>\n?/gm, "")
.replace(/^<\/ContentTabs>\n?/gm, "")
Expand Down