Skip to content

Commit 82958d8

Browse files
authored
Merge pull request #1223 from zdaar/clearer_default
Segmented default.yaml into sections so it is clearer how to nest them
2 parents 3cffb8e + 4a7ae6c commit 82958d8

File tree

1 file changed

+6
-0
lines changed
  • interpreter/terminal_interface/profiles/defaults

1 file changed

+6
-0
lines changed

interpreter/terminal_interface/profiles/defaults/default.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,24 @@
22

33
# Remove the "#" before the settings below to use them.
44

5+
# LLM Settings
56
llm:
67
model: "gpt-4-turbo"
78
temperature: 0
89
# api_key: ... # Your API key, if the API requires it
910
# api_base: ... # The URL where an OpenAI-compatible server is running to handle LLM API requests
1011
# api_version: ... # The version of the API (this is primarily for Azure)
1112
# max_output: 2500 # The maximum characters of code output visible to the LLM
13+
14+
# Custom Instructions
1215
# custom_instructions: "" # This will be appended to the system message
16+
17+
# General Configuration
1318
# auto_run: False # If True, code will run without asking for confirmation
1419
# safe_mode: "off" # The safety mode for the LLM — one of "off", "ask", "auto"
1520
# offline: False # If True, will disable some online features like checking for updates
1621
# verbose: False # If True, will print detailed logs
1722
# multi_line: False # If True, you can input multiple lines starting and ending with ```
1823

24+
# Documentation
1925
# All options: https://docs.openinterpreter.com/settings

0 commit comments

Comments
 (0)