You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
server_url: str=typer.Option(None, "--server-url", help="Specify the server URL that the client should expect. Defaults to server-host and server-port"),
26
27
client_type: str=typer.Option("auto", "--client-type", help="Specify the client type"),
27
-
28
+
28
29
llm_service: str=typer.Option("litellm", "--llm-service", help="Specify the LLM service"),
29
-
30
+
30
31
model: str=typer.Option("gpt-4", "--model", help="Specify the model"),
31
32
llm_supports_vision: bool=typer.Option(False, "--llm-supports-vision", help="Specify if the LLM service supports vision"),
32
33
llm_supports_functions: bool=typer.Option(False, "--llm-supports-functions", help="Specify if the LLM service supports functions"),
33
34
context_window: int=typer.Option(2048, "--context-window", help="Specify the context window size"),
34
35
max_tokens: int=typer.Option(4096, "--max-tokens", help="Specify the maximum number of tokens"),
35
36
temperature: float=typer.Option(0.8, "--temperature", help="Specify the temperature for generation"),
36
-
37
+
37
38
tts_service: str=typer.Option("openai", "--tts-service", help="Specify the TTS service"),
38
-
39
+
39
40
stt_service: str=typer.Option("openai", "--stt-service", help="Specify the STT service"),
40
41
41
42
local: bool=typer.Option(False, "--local", help="Use recommended local services for LLM, STT, and TTS"),
42
-
43
+
43
44
qr: bool=typer.Option(False, "--qr", help="Print the QR code for the server URL")
0 commit comments