Skip to content

Commit e416a5e

Browse files
committed
lint
1 parent 5c736a8 commit e416a5e

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

agents/src/inference/llm.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,7 @@ export interface ChatCompletionOptions extends Record<string, unknown> {
8282
// response_format?: OpenAI.Chat.Completions.ChatCompletionCreateParams['response_format']
8383
}
8484

85-
export type LLMModels =
86-
| OpenAIModels
87-
| GoogleModels
88-
| MoonshotModels
89-
| DeepSeekModels
90-
| AnyString;
85+
export type LLMModels = OpenAIModels | GoogleModels | MoonshotModels | DeepSeekModels | AnyString;
9186

9287
export interface InferenceLLMOptions {
9388
model: LLMModels;

agents/src/inference/stt.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ export type DeepgramModels =
3535

3636
export type CartesiaModels = 'cartesia/ink-whisper';
3737

38-
export type AssemblyaiModels = 'assemblyai/universal-streaming' | 'assemblyai/universal-streaming-multilingual';
38+
export type AssemblyaiModels =
39+
| 'assemblyai/universal-streaming'
40+
| 'assemblyai/universal-streaming-multilingual';
3941

4042
export type ElevenlabsSTTModels = 'elevenlabs/scribe_v2_realtime';
4143

agents/src/inference/tts.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,12 @@ export interface RimeOptions {}
6161

6262
export interface InworldOptions {}
6363

64-
type _TTSModels = CartesiaModels | DeepgramTTSModels | ElevenlabsModels | RimeModels | InworldModels;
64+
type _TTSModels =
65+
| CartesiaModels
66+
| DeepgramTTSModels
67+
| ElevenlabsModels
68+
| RimeModels
69+
| InworldModels;
6570

6671
export type TTSModels =
6772
| CartesiaModels

0 commit comments

Comments
 (0)