// SPDX-FileCopyrightText: 2024 LiveKit, Inc. // // SPDX-License-Identifier: Apache-2.0 import { llm, llmStrict } from '@livekit/agents-plugins-test'; import { describe, it } from 'vitest'; import { LLM } from './llm.js'; const hasOpenAIApiKey = Boolean(process.env.OPENAI_API_KEY); if (hasOpenAIApiKey) { describe('OpenAI', async () => { await llm( new LLM({ temperature: 0, }), false, ); }); } else { describe('OpenAI', () => { it.skip('requires OPENAI_API_KEY', () => {}); }); } if (hasOpenAIApiKey) { describe('OpenAI strict tool schema', async () => { await llmStrict( new LLM({ temperature: 0, strictToolSchema: true, }), ); }); } else { describe('OpenAI strict tool schema', () => { it.skip('requires OPENAI_API_KEY', () => {}); }); }