@@ -80,29 +80,31 @@ def help_message():
8080A modern command-line assistant.
8181
8282options:
83- --model model to use for completion
84- --provider api provider (e.g. openai, anthropic)
85- --api-base base url for api requests
86- --api-key api key for authentication
87- --api-version api version to use
88- --temperature sampling temperature (default: 0)
89-
90- --tools comma-separated tools: interpreter,editor,gui
91- --allowed-commands commands the model can execute
92- --allowed-paths paths the model can access
93- --no-tool-calling disable tool calling (instead parse markdown code)
94- --auto-run, -y auto-run suggested commands
95- --interactive force interactive mode (true if sys.stdin.isatty())
96- --no-interactive disable interactive mode
97-
98- --instructions additional instructions in system message
99- --input pre-fill first user message
100- --system-message override default system message
101- --max-turns maximum conversation turns (-1 for unlimited)
102-
103- --profile load settings from config file
104- --profiles open profiles directory
105- --serve start openai-compatible server
83+ --models show available models
84+ --model <model> model to use for completion
85+ --provider <provider> api provider (e.g. openai, anthropic)
86+ --api-base <url> base url for api requests
87+ --api-key <key> api key for authentication
88+ --api-version <version> api version to use
89+ --temperature <float> sampling temperature (default: 0)
90+
91+ --tools <list> comma-separated tools: interpreter,editor,gui
92+ --allowed-commands <list> commands the model can execute
93+ --allowed-paths <list> paths the model can access
94+ --no-tool-calling disable tool calling (instead parse markdown code)
95+ --auto-run, -y auto-run suggested commands
96+ --interactive force interactive mode (true if sys.stdin.isatty())
97+ --no-interactive disable interactive mode
98+
99+ --instructions <text> additional instructions in system message
100+ --input <text> pre-fill first user message
101+ --system-message <text> override default system message
102+ --max-turns <int> maximum conversation turns (-1 for unlimited)
103+
104+ --profile <path> load settings from config file or url
105+ --save <path> save settings to config file
106+ --profiles open profiles directory
107+ --serve start openai-compatible server
106108
107109example: i want a venv
108110example: interpreter --model ollama/llama3.2 --serve
0 commit comments