diff --git a/docs/usage/terminal/settings.mdx b/docs/usage/terminal/settings.mdx index 28af89738b..f8de7ed581 100644 --- a/docs/usage/terminal/settings.mdx +++ b/docs/usage/terminal/settings.mdx @@ -6,4 +6,21 @@ Default settings can be edited via a configuration file. To open the file, run: ```bash interpreter --config -``` \ No newline at end of file +``` + +| 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] | diff --git a/interpreter/terminal_interface/config.yaml b/interpreter/terminal_interface/config.yaml index e33b7cfc71..9c302b8968 100644 --- a/interpreter/terminal_interface/config.yaml +++ b/interpreter/terminal_interface/config.yaml @@ -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)