File tree Expand file tree Collapse file tree 3 files changed +66
-7
lines changed Expand file tree Collapse file tree 3 files changed +66
-7
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ If you want to make your own profile, start with the [Template Profile](https://
12
12
13
13
To apply a Profile to an Open Interpreter session, you can run ` interpreter --profile <name> `
14
14
15
- # Example Profile
15
+ # Example Python Profile
16
16
17
17
``` Python
18
18
from interpreter import interpreter
@@ -29,6 +29,31 @@ interpreter.auto_run = True
29
29
interpreter.loop = True
30
30
```
31
31
32
+ # Example YAML Profile
33
+
34
+ <Info > Make sure YAML profile version is set to 0.2.5 </Info >
35
+
36
+ ``` YAML
37
+ llm :
38
+ model : " gpt-4-o"
39
+ temperature : 0
40
+ # api_key: ... # Your API key, if the API requires it
41
+ # api_base: ... # The URL where an OpenAI-compatible server is running to handle LLM API requests
42
+
43
+ # Computer Settings
44
+ computer :
45
+ import_computer_api : True # Gives OI a helpful Computer API designed for code interpreting language models
46
+
47
+ # Custom Instructions
48
+ custom_instructions : " " # This will be appended to the system message
49
+
50
+ # General Configuration
51
+ auto_run : False # If True, code will run without asking for confirmation
52
+ offline : False # If True, will disable some online features like checking for updates
53
+
54
+ version : 0.2.5 # Configuration file version (do not modify)
55
+ ` ` `
56
+
32
57
<Tip>
33
58
There are many settings that can be configured. [See them all
34
59
here](/settings/all-settings)
Original file line number Diff line number Diff line change 31
31
"navigation" : [
32
32
{
33
33
"group" : " Getting Started" ,
34
- "pages" : [" getting-started/introduction" , " getting-started/setup" ]
34
+ "pages" : [
35
+ " getting-started/introduction" ,
36
+ " getting-started/setup"
37
+ ]
35
38
},
36
39
{
37
40
"group" : " Guides" ,
47
50
},
48
51
{
49
52
"group" : " Settings" ,
50
- "pages" : [" settings/all-settings" ]
53
+ "pages" : [
54
+ " settings/all-settings"
55
+ ]
51
56
},
52
57
{
53
58
"group" : " Language Models" ,
105
110
},
106
111
{
107
112
"group" : " Protocols" ,
108
- "pages" : [" protocols/lmc-messages" ]
113
+ "pages" : [
114
+ " protocols/lmc-messages"
115
+ ]
109
116
},
110
117
{
111
118
"group" : " Integrations" ,
112
- "pages" : [" integrations/e2b" , " integrations/docker" ]
119
+ "pages" : [
120
+ " integrations/e2b" ,
121
+ " integrations/docker"
122
+ ]
113
123
},
114
124
{
115
125
"group" : " Safety" ,
120
130
" safety/best-practices"
121
131
]
122
132
},
133
+ {
134
+ "group" : " Troubleshooting" ,
135
+ "pages" : [
136
+ " troubleshooting/faq"
137
+ ]
138
+ },
123
139
{
124
140
"group" : " Telemetry" ,
125
- "pages" : [" telemetry/telemetry" ]
141
+ "pages" : [
142
+ " telemetry/telemetry"
143
+ ]
126
144
}
127
145
],
128
146
"feedback" : {
133
151
"youtube" : " https://www.youtube.com/@OpenInterpreter" ,
134
152
"linkedin" : " https://www.linkedin.com/company/openinterpreter"
135
153
}
136
- }
154
+ }
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : " FAQ"
3
+ description : " Frequently Asked Questions"
4
+ ---
5
+
6
+ <Accordion title = " Does Open Interpreter ensure that my data doesn't leave my computer?" >
7
+ As long as you're using a local language model, your messages / personal info
8
+ won't leave your computer. If you use a cloud model, we send your messages +
9
+ custom instructions to the model. We also have a basic telemetry
10
+ [ function] ( https://github.com/OpenInterpreter/open-interpreter/blob/main/interpreter/core/core.py#L167 )
11
+ (copied over from ChromaDB's telemetry) that anonymously tracks usage. This
12
+ only lets us know if a message was sent, includes no PII. OI errors will also
13
+ be reported here which includes the exception string. Detailed docs on all
14
+ this is [ here] ( /telemetry/telemetry ) , and you can opt out by running
15
+ ` --local ` , ` --offline ` , or ` --disable_telemetry ` .
16
+ </Accordion >
You can’t perform that action at this time.
0 commit comments