| 1 | export interface TextChatFlags { |
| 2 | model?: string; |
| 3 | message?: string[]; |
| 4 | messagesFile?: string; |
| 5 | system?: string; |
| 6 | maxTokens?: number; |
| 7 | temperature?: number; |
| 8 | topP?: number; |
| 9 | stream?: boolean; |
| 10 | tool?: string[]; |
| 11 | } |
| 12 | |
| 13 | export interface SpeechSynthesizeFlags { |
| 14 | model?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected