You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is reflected **1)** in Python applications using Open Interpreter and **2)** in your configuration file for OI's terminal interface, which can be edited via `interpreter --config`.
41
+
This is reflected **1)** in Python applications using Open Interpreter and **2)** in your profiles file for OI's terminal interface, which can be edited via `interpreter --profiles`.
We save default settings to a configuration file which can be edited by running the following command:
104
+
We save default settings to a profile file which can be edited by running the following command:
106
105
107
106
```shell
108
-
interpreter --config
107
+
interpreter --profiles
109
108
```
110
109
111
110
You can use this to set your default language model, system message (custom instructions), max budget, etc.
112
111
113
-
<Info>**Note:** The Python library will also inherit settings from this config file, but you can only change it by running `interpreter --config` or navigating to `<your application directory>/Open Interpreter/config.yaml` and editing it manually.</Info>
112
+
<Info>
113
+
**Note:** The Python library will also inherit settings from the default
114
+
profile file. You can change it by running `interpreter --profiles` and
Copy file name to clipboardExpand all lines: docs/telemetry/telemetry.mdx
+6-2
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Use the `--disable_telemetry` flag:
27
27
interpreter --disable_telemetry
28
28
```
29
29
30
-
### Configuration File
30
+
### Profile
31
31
32
32
Set `disable_telemetry` to `true`. This will persist to future terminal sessions:
33
33
@@ -61,4 +61,8 @@ To view the list of events we track, you may reference the **[code](https://gith
61
61
62
62
We use **[Posthog](https://posthog.com/)** to store and visualize telemetry data.
63
63
64
-
<Info>Posthog is an open source platform for product analytics. Learn more about Posthog on **[posthog.com](https://posthog.com/)** or **[github.com/posthog](https://github.com/posthog/posthog)**</Info>
64
+
<Info>
65
+
Posthog is an open source platform for product analytics. Learn more about
66
+
Posthog on **[posthog.com](https://posthog.com/)** or
We save default settings to a configuration file which can be edited by running the following command:
105
+
We save default settings to a profile file which can be edited by running the following command:
106
106
107
107
```shell
108
-
interpreter --config
108
+
interpreter --profiles
109
109
```
110
110
111
111
You can use this to set your default language model, system message (custom instructions), max budget, etc.
112
112
113
-
<Info>**Note:** The Python library will also inherit settings from this config file, but you can only change it by running `interpreter --config` or navigating to `<your application directory>/Open Interpreter/config.yaml` and editing it manually.</Info>
113
+
<Info>
114
+
**Note:** The Python library will also inherit settings from the default
115
+
profile file. You can change it by running `interpreter --profiles` and
116
+
editing `default.yaml`.
117
+
</Info>
114
118
115
119
---
116
120
@@ -147,4 +151,4 @@ In Python, set the model on the object:
147
151
interpreter.llm.model ="gpt-3.5-turbo"
148
152
```
149
153
150
-
[Find the appropriate "model" string for your language model here.](https://docs.litellm.ai/docs/providers/)
154
+
[Find the appropriate "model" string for your language model here.](https://docs.litellm.ai/docs/providers/)
Copy file name to clipboardExpand all lines: docs/usage/python/settings.mdx
+3-3
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,10 @@
2
2
title: Settings
3
3
---
4
4
5
-
Default settings will be inherited from a configuration file in your application directory. **This is true for python and for the terminal interface.**
5
+
Default settings will be inherited from a profile in your application directory. **This is true for python and for the terminal interface.**
Opens the configuration yaml file in your default editor.
262
+
Opens the directory containing all profiles. They can be edited in your default editor.
265
263
266
264
<CodeGroup>
267
265
```bash Terminal
268
-
interpreter --config
266
+
interpreter --profilees
269
267
```
270
268
271
269
</CodeGroup>
272
270
273
-
#### `--config_file` or `-cf`
271
+
#### `--profile` or `-p`
274
272
275
-
Optionally set a custom config file to use.
273
+
Optionally set a profile to use.
276
274
277
275
<CodeGroup>
278
276
```bash Terminal
279
-
interpreter --config_file "/config.yaml"
277
+
interpreter --profile "default.yaml"
280
278
```
281
279
282
280
</CodeGroup>
@@ -298,7 +296,7 @@ custom_instructions: "This is a custom instruction."
298
296
299
297
#### `--system_message` or `-s`
300
298
301
-
We don't recommend modifying the system message, as doing so opts you out of future updates to the system message. Use `--custom_instructions` instead, to add relevant information to the system message. If you must modify the system message, you can do so by using this argument, or by opening the config file using `--config`.
299
+
We don't recommend modifying the system message, as doing so opts you out of future updates to the system message. Use `--custom_instructions` instead, to add relevant information to the system message. If you must modify the system message, you can do so by using this argument, or by opening the profile using `--profiles`.
302
300
303
301
<CodeGroup>
304
302
```bash Terminal
@@ -309,19 +307,6 @@ interpreter --system_message "You are Open Interpreter..."
0 commit comments