Reference
Classes
CopilotRuntime
Service Adapters
OpenAI Adapter

OpenAIAdapter

Copilot Runtime adapter for OpenAI.

Example

import { CopilotRuntime, OpenAIAdapter } from "@copilotkit/runtime";
import OpenAI from "openai";
 
const copilotKit = new CopilotRuntime();
 
const openai = new OpenAI({
  organization: "<your-organization-id>", // optional
  apiKey: "<your-api-key>",
});
 
const serviceAdapter = new OpenAIAdapter({ openai });
 
return copilotKit.streamHttpServerResponse(req, res, serviceAdapter);

Constructor Parameters

openaiOpenAI

An optional OpenAI instance to use. If not provided, a new instance will be created.

modelstring

The model to use.

disableParallelToolCallsboolean
Default: "false"

Whether to disable parallel tool calls. You can disable parallel tool calls to force the model to execute tool calls sequentially. This is useful if you want to execute tool calls in a specific order so that the state changes introduced by one tool call are visible to the next tool call. (i.e. new actions or readables)


© Tawkit, Inc. All rights reserved.