Skip to main content
AI Gateway and Model Garden revamp
v4.10.0
The AI Gateway is now its own dedicated area of the product, separate from the studio, and the Model Garden has been rebuilt from the ground up. Finding, comparing, and enabling models is faster and clearer.Model Garden listing models in a table with columns for status, price, capabilities, token limits, owner, and location, next to a filter sidebar
  • Dedicated AI Gateway: Workspaces on the router tier now land directly in the AI Gateway, with observability and routing pages available from its sidebar.
  • Rebuilt Model Overview: A rebuilt layout with repositioned filters for model owner, provider, location, features, and context length. Sort on the release date column to surface the newest models first.
  • BYOK tab: The Providers tab is now the BYOK tab, where bring-your-own-key credentials are managed, with a filter to show only the models that have a custom key added.
Browse and enable models from the AI Gateway overview.
Unified API key management
v4.10.0
API keys used to come in three separate flavors, each with its own rules: workspace keys, project keys, and AI Router keys. Release 4.10 is the first step to bring them together under one model, so every key behaves the same way and is easier to reason about.Create new secret key panel with Restricted permissions selected, showing per-resource read, write, and no-access toggles for areas such as Agents, Deployments, and Evaluators, over the API Keys list
  • One permission model: Every new key now uses the same access levels. Pick All for full access, Read-only to view without changing anything, or Restricted to scope a key to specific areas.
  • Restricted keys: Restricted keys give granular control. Decide, per endpoint and capability, whether a key has read, write, or no access at all, so a key can do exactly what it is meant to and nothing more.
  • More secure tokens: New keys are issued in a new token format, and the full key is shown only once at creation. Existing keys continue to function with no action needed.
  • Service Account Keys: Only admins can create Service Account Keys, which are not tied to an individual user. Use these for production systems, since a standard user key is automatically disabled when that user no longer exists in the workspace.
  • Project-scoped keys: Every new key is scoped to a single project. Workspace-wide keys are no longer created.
    • When working across projects with the Orq.ai MCP, switch the API key to match the project being worked on.
Learn how to create and scope keys in the API Keys documentation.
Agent Schedules
v4.10.0
Agents can now run on a recurring schedule, with no need to keep a connection open or trigger them by hand. A scheduled run is identical to a normal agent call: same execution, tracing, and billing, just fired by the scheduler.Agent Schedules tab listing recurring schedules next to an Edit schedule panel with frequency, time, input, variables, and metadata fields
  • Recurring runs: Run an agent hourly, daily, or weekly, for example a morning briefing or a daily ticket summary.
  • Per-run payload: Configure each run’s input, template variables, and metadata that is attached to every response the schedule generates.
  • Full control: Create, list, update, pause, resume, and delete schedules, or trigger a run on demand.
  • Fully observable: Each scheduled run appears in Traces like any other agent run.
Create a schedule with a POST to the target agent’s schedules endpoint, replacing {YOUR_AGENT_KEY} with the agent’s key:
curl -X POST https://api.orq.ai/v3/agents/{YOUR_AGENT_KEY}/schedules \
  -H "Authorization: Bearer $ORQ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "cron",
    "expression": "0 0 9 * * *",
    "payload": {
      "input": "Summarize new tickets from the last 24 hours"
    }
  }'
See cadence rules and the full API in the Agent Schedules guide.
Unified Review screen
v4.10.0
Reviewing model output now happens on one shared Review screen, available across Experiments and Annotation Queues. The same scoring and annotation tools work the same way wherever review happens.Unified Review screen on an experiment response, with inputs and expected output on the left, the model conversation in the center, and a human review panel with evaluator results on the right
  • Review in Annotation Queues: Annotations submitted in a queue are written back to the underlying trace, where they can be analyzed through the Orq.ai MCP and filtered on in the UI.
  • Review in Experiments: The same screen now renders multi-turn, tool-calling runs clearly, showing each tool call and its result so reasoning across steps is easy to follow.
See how reviews and queues fit together in the Annotations guide.
Evaluator Studio
v4.10.0
Building Evaluators has been redesigned into Evaluator Studio: a cleaner workspace for writing an evaluator, choosing its judge model, and testing it before it goes live.Evaluator Studio with the evaluator settings and prompt in the center and a Playground testing panel on the right offering Editor and Dataset tabs with a Run test action
  • Editor and Dataset testing for LLM-as-a-judge: Test an LLM-as-a-judge evaluator by filling in values by hand in the Editor tab, or run it against rows from a real dataset in the Dataset tab.
  • HTTP and JSON evaluators replaced by Python: HTTP and JSON evaluators can no longer be created. Existing ones keep working, but new use cases move to Python Evaluators, which now include the requests library for HTTP calls and pydantic for JSON schema validation.
def evaluate(log):
    output_size = len(log["output"])
    reference_size = len(log["reference"])
    return abs(output_size - reference_size)
Start building in the Create Evaluators guide.
New features
v4.10.0
  • Broader framework tracing: Tracing across popular agent frameworks is more accurate and complete this release. Google ADK gains broader span coverage, corrected parent-child relationships, and richer step attributes, and coverage improved for LangGraph, Vercel AI SDK, Pydantic AI, Mastra, Agno, and the Claude and Anthropic SDKs.
  • invoke_model MCP tool: The invoke_model tool now exposes reasoning and include options, so MCP clients can use reasoning-capable models and request extra response details.
Improvements
v4.10.0
  • Refreshed pages: Several pages moved to the new design system for a more consistent look. In the AI Gateway, this covers Policies, Routing Rules, Guardrails, the home dashboard, and Recents. In the Studio, Identities is the first page refreshed, with the remaining pages to follow in a future release.
  • Reliable JSON output for Claude: JSON schema is now enforced for a set of Claude models on Bedrock and Vertex that previously did not honor it, so structured output stays consistent across providers.
Bug fixes
v4.10.0
  • Reasoning effort on scheduled and API-created Agents: Reasoning effort set on Agents created through the Responses API was dropped when the agent ran. The setting is now kept end to end.
  • Evaluator result links in Experiments: Opening a trace from an evaluator result row in an Experiment no longer hangs.
  • Images in Experiment annotations: Image attachments in Experiment row annotations now display correctly instead of showing [object Object].
  • Knowledge Chunks API: Four fixes shipped together. Bulk delete now reports the real deleted count and lists any failures, list pagination reports the correct next-page state, chunks that are not yet indexed are no longer dropped from list results, and enabling or disabling a chunk no longer errors when it has no search index entry.
  • Empty chunk text rejected: The Knowledge Chunks API now rejects empty text, preventing zero-length chunks from entering the index.
  • Dataset ID validation: Dataset paths now reject malformed IDs instead of silently routing the request somewhere unexpected.
  • Identities page loading: The Identities page now loads reliably.
  • PDF attachments to Claude: PDFs sent to Claude models are now passed through correctly instead of being silently dropped on some requests.
  • Project-scoped key isolation: Project-scoped API keys can no longer read entities from other projects.
New models
v4.10.0
New additions to the Model Garden across Alibaba, Anthropic, AWS Bedrock, Google Vertex, Google AI, Minimax, Tensorix, and Together AI. Browse details on the Supported Models page.
ProviderModels
Alibabaalibaba/kimi-k2.6
Anthropicanthropic/claude-opus-4-8
AWS Bedrockaws/eu.anthropic.claude-opus-4-8 (EU), aws/global.anthropic.claude-opus-4-8, aws/us.anthropic.claude-opus-4-8
Google Vertexgoogle/claude-opus-4-8 (EU), google/gemini-3.5-flash
Google AIgoogle-ai/gemini-3.5-flash
Minimaxminimax/MiniMax-M3
Tensorixtensorix/moonshotai/Kimi-K2.6 (EU)
Together AItogetherai/moonshotai/Kimi-K2.6
On AWS Bedrock, Claude Opus 4.8 ships as EU, US, and global region variants, so inference can stay in the EU region for workloads that require it.