changr to openai main cli

This commit is contained in:
yichuan520030910320
2025-07-28 17:39:14 -07:00
parent 08eac5c821
commit 8356e3c668

View File

@@ -94,14 +94,14 @@ if __name__ == "__main__":
parser.add_argument( parser.add_argument(
"--llm", "--llm",
type=str, type=str,
default="hf", default="openai",
choices=["simulated", "ollama", "hf", "openai"], choices=["simulated", "ollama", "hf", "openai"],
help="The LLM backend to use.", help="The LLM backend to use.",
) )
parser.add_argument( parser.add_argument(
"--model", "--model",
type=str, type=str,
default="Qwen/Qwen3-0.6B", default="gpt-4o",
help="The model name to use (e.g., 'llama3:8b' for ollama, 'deepseek-ai/deepseek-llm-7b-chat' for hf, 'gpt-4o' for openai).", help="The model name to use (e.g., 'llama3:8b' for ollama, 'deepseek-ai/deepseek-llm-7b-chat' for hf, 'gpt-4o' for openai).",
) )
parser.add_argument( parser.add_argument(