Skip to content

Commit 4a6e0a3

Browse files
authored
replace the rest of the KillianLucas urls with OpenInterpreter
1 parent b67deca commit 4a6e0a3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/SAFE_MODE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pip install semgrep
2323

2424
## Enabling Safe Mode
2525

26-
You can enable safe mode by passing the `--safe` flag when invoking `interpreter` or by configuring `safe_mode` in your [config file](https://github.com/KillianLucas/open-interpreter#configuration).
26+
You can enable safe mode by passing the `--safe` flag when invoking `interpreter` or by configuring `safe_mode` in your [config file](https://github.com/OpenInterpreter/open-interpreter#configuration).
2727

2828
The safe mode setting has three options:
2929

@@ -48,7 +48,7 @@ Some upcoming features that enable even more safety:
4848
4949
## Tips & Tricks
5050
51-
You can adjust the `system_message` in your [config file](https://github.com/KillianLucas/open-interpreter#configuration) to include instructions for the model to scan packages with [`guarddog`]() before installing them.
51+
You can adjust the `system_message` in your [config file](https://github.com/OpenInterpreter/open-interpreter#configuration) to include instructions for the model to scan packages with [`guarddog`]() before installing them.
5252

5353
```yaml
5454
model: gpt-4

docs/getting-started/setup.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ To try our experimental installers, open your Terminal with admin privileges [(c
6565
<CodeGroup>
6666

6767
```bash Mac
68-
curl -sL https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-mac-installer.sh | bash
68+
curl -sL https://raw.githubusercontent.com/OpenInterpreter/open-interpreter/main/installers/oi-mac-installer.sh | bash
6969
```
7070

7171
```powershell Windows
72-
iex "& {$(irm https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-windows-installer-conda.ps1)}"
72+
iex "& {$(irm https://raw.githubusercontent.com/OpenInterpreter/open-interpreter/main/installers/oi-windows-installer-conda.ps1)}"
7373
```
7474

7575
```bash Linux
76-
curl -sL https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-linux-installer.sh | bash
76+
curl -sL https://raw.githubusercontent.com/OpenInterpreter/open-interpreter/main/installers/oi-linux-installer.sh | bash
7777
```
7878

7979
</CodeGroup>

docs/safety/safe-mode.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pip install semgrep
2727

2828
## Enabling Safe Mode
2929

30-
You can enable safe mode by passing the `--safe` flag when invoking `interpreter` or by configuring `safe_mode` in your [config file](https://github.com/KillianLucas/open-interpreter#configuration).
30+
You can enable safe mode by passing the `--safe` flag when invoking `interpreter` or by configuring `safe_mode` in your [config file](https://github.com/OpenInterpreter/open-interpreter#configuration).
3131

3232
The safe mode setting has three options:
3333

@@ -52,7 +52,7 @@ Some upcoming features that enable even more safety:
5252
5353
## Tips & Tricks
5454
55-
You can adjust the `custom_instructions` in your [config file](https://github.com/KillianLucas/open-interpreter#configuration) to include instructions for the model to scan packages with [guarddog](https://github.com/DataDog/guarddog) before installing them.
55+
You can adjust the `custom_instructions` in your [config file](https://github.com/OpenInterpreter/open-interpreter#configuration) to include instructions for the model to scan packages with [guarddog](https://github.com/DataDog/guarddog) before installing them.
5656

5757
```yaml
5858
model: gpt-4

interpreter/terminal_interface/magic_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def handle_count_tokens(self, prompt):
206206
)
207207

208208
outputs.append(
209-
f"**Note**: This functionality is currently experimental and may not be accurate. Please report any issues you find to the [Open Interpreter GitHub repository](https://github.com/KillianLucas/open-interpreter)."
209+
f"**Note**: This functionality is currently experimental and may not be accurate. Please report any issues you find to the [Open Interpreter GitHub repository](https://github.com/OpenInterpreter/open-interpreter)."
210210
)
211211

212212
self.display_message("\n".join(outputs))

interpreter/terminal_interface/profiles/defaults/os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
# # Install Open Interpreter from GitHub
238238
# for chunk in interpreter.computer.run(
239239
# "shell",
240-
# "pip install git+https://github.com/KillianLucas/open-interpreter.git",
240+
# "pip install git+https://github.com/OpenInterpreter/open-interpreter.git",
241241
# ):
242242
# if chunk.get("format") != "active_line":
243243
# print(chunk.get("content"))

0 commit comments

Comments
 (0)