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
parser=argparse.ArgumentParser(description='Query an LLM with a prompt')
234
244
parser.add_argument('--prompt', type=str, help='The prompt to send to the LLM', required=True)
235
-
parser.add_argument('--provider', choices=['openai','anthropic','gemini','local','deepseek','azure'], default='openai', help='The API provider to use')
245
+
parser.add_argument('--provider', choices=['openai','anthropic','gemini','local','deepseek','azure','siliconflow'], default='openai', help='The API provider to use')
236
246
parser.add_argument('--model', type=str, help='The model to use (default depends on provider)')
237
247
parser.add_argument('--image', type=str, help='Path to an image file to attach to the prompt')
0 commit comments