@copilotkit/runtime
Version:
<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />
20 lines (19 loc) • 701 B
text/typescript
import "reflect-metadata";
import { CopilotRuntimeChatCompletionRequest, CopilotRuntimeChatCompletionResponse, CopilotServiceAdapter } from "../service-adapter.mjs";
//#region src/service-adapters/unify/unify-adapter.d.ts
interface UnifyAdapterParams {
apiKey?: string;
model: string;
}
declare class UnifyAdapter implements CopilotServiceAdapter {
private apiKey;
model: string;
private start;
provider: string;
get name(): string;
constructor(options?: UnifyAdapterParams);
process(request: CopilotRuntimeChatCompletionRequest): Promise<CopilotRuntimeChatCompletionResponse>;
}
//#endregion
export { UnifyAdapter, UnifyAdapterParams };
//# sourceMappingURL=unify-adapter.d.mts.map