| title | GroqAdapter |
|---|---|
| description | Copilot Runtime adapter for Groq. |
{ /*
- ATTENTION! DO NOT MODIFY THIS FILE!
- This page is auto-generated. If you want to make any changes to this page, changes must be made at:
- packages/runtime/src/service-adapters/groq/groq-adapter.ts */ } Copilot Runtime adapter for Groq.
import { CopilotRuntime, GroqAdapter } from "@copilotkit/runtime";
import { Groq } from "groq-sdk";
const groq = new Groq({ apiKey: process.env["GROQ_API_KEY"] });
const copilotKit = new CopilotRuntime();
return new GroqAdapter({ groq, model: "<model-name>" });