Skip to main content

Integration Types

Explore the two main categories of integrations available on Orq.ai:

Integrations Patterns

Orq.ai provides three integration patterns. Most teams combine them for complete AI operations.

AI Studio

Create agents and deployments in Orq.ai’s UI. They automatically access all LLM providers with built-in observability. Get started: with the AI Studio, configure your Providers

AI Router

Change your API endpoint and start routing through Orq.ai. No SDK changes needed.
// Just change the baseURL
const openai = new OpenAI({
  apiKey: process.env.ORQ_API_KEY,
  baseURL: "https://api.orq.ai/v2/router",
});
Benefits: Provider switching, cost tracking, automatic fallbacks, observability Get Started: with the AI Router, and configure your Providers and use your Favorite Frameworks.

OpenTelemetry Tracing

For: Sending observability traces from your existing AI applications Instrument your framework to send traces to Orq.ai. See calls, token usage, latency, and costs.
from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter
from openinference.instrumentation.langchain import LangChainInstrumentor

otlp_exporter = OTLPSpanExporter(
    endpoint="https://api.orq.ai/v2/otel",
    headers={"Authorization": f"Bearer {ORQ_API_KEY}"}
)

LangChainInstrumentor().instrument()
Get started: with compatible Framework Integrations