Skip to content

update documentation to include the parameters #908

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion docs/usage/terminal/settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,21 @@ Default settings can be edited via a configuration file. To open the file, run:

```bash
interpreter --config
```
```

| Key | Value |
|-------------------------|------------------|
| `llm_model` | String ["openai/gpt-4", "openai/local", "azure/gpt-3.5"] |
| `llm_temperature` | Float [0.0 -> 1.0] |
| `llm_supports_vision` | Boolean [True/False] |
| `llm_supports_functions`| Boolean [True/False] |
| `llm_context_window` | Integer [3000] |
| `llm_max_tokens` | Integer [3000] |
| `llm_api_base` | String ["http://ip_address:port", "https://openai.com"] |
| `llm_api_key` | String ["sk-Your-Key"] |
| `llm_api_version` | String ["version-number"] |
| `llm_max_budget` | Float [0.01] #USD $0.01 |
| `offline` | Boolean [True/False] |
| `vision` | Boolean [True/False] |
| `auto_run` | Boolean [True/False] |
| `verbose` | Boolean [True/False] |
2 changes: 1 addition & 1 deletion interpreter/terminal_interface/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ llm.temperature: 0
# llm.api_version: ... # The version of the API (this is primarily for Azure)
# llm.max_output: 2500 # The maximum characters of code output visible to the LLM

# All options: https://docs.openinterpreter.com/usage/terminal/config
# All options: https://docs.openinterpreter.com/usage/terminal/settings

version: 0.2.0 # Configuration file version (do not modify)