Files
test1/app/api/llm-client.ts
2026-03-20 07:33:46 +00:00

6 lines
158 B
TypeScript

import { SkillsClient } from '@/llm'
export const llmClient = new SkillsClient({
apiKey: process.env.LLM_API_KEY!,
baseUrl: process.env.LLM_BASE_URL!,
})