@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;" />
26 lines (24 loc) • 701 B
text/typescript
import { LangChainAdapter } from "../langchain/langchain-adapter.cjs";
//#region src/service-adapters/google/google-genai-adapter.d.ts
interface GoogleGenerativeAIAdapterOptions {
/**
* A custom Google Generative AI model to use.
*/
model?: string;
/**
* The API version to use (e.g. "v1" or "v1beta"). Defaults to "v1".
*/
apiVersion?: "v1" | "v1beta";
/**
* The API key to use.
*/
apiKey?: string;
}
declare class GoogleGenerativeAIAdapter extends LangChainAdapter {
provider: string;
model: string;
constructor(options?: GoogleGenerativeAIAdapterOptions);
}
//#endregion
export { GoogleGenerativeAIAdapter };
//# sourceMappingURL=google-genai-adapter.d.cts.map