Skip to content

Commit debdf0c

Browse files
authored
Merge branch 'OpenInterpreter:main' into main
2 parents 4fae071 + 9c8a3b9 commit debdf0c

17 files changed

+125
-1019
lines changed

docs/CONTRIBUTING.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ We will review PRs when possible and work with you to integrate your contributio
3131

3232
Once you've forked the code and created a new branch for your work, you can run the fork in CLI mode by following these steps:
3333

34-
1. CD into the project folder `/open-interpreter`
35-
2. Install dependencies `poetry install`
36-
3. Run the program `poetry run interpreter`
37-
38-
After modifying the source code, you will need to do `poetry run interpreter` again.
34+
1. CD into the project folder by running `cd open-interpreter`.
35+
2. Install `poetry` [according to their documentation](https://python-poetry.org/docs/#installing-with-pipx), which will create a virtual environment for development + handle dependencies.
36+
3. Install dependencies by running `poetry install`.
37+
4. Run the program with `poetry run interpreter`. Run tests with `poetry run pytest -s -x`.
3938

4039
**Note**: This project uses [`black`](https://black.readthedocs.io/en/stable/index.html) and [`isort`](https://pypi.org/project/isort/) via a [`pre-commit`](https://pre-commit.com/) hook to ensure consistent code style. If you need to bypass it for some reason, you can `git commit` with the `--no-verify` flag.
4140

interpreter/core/ARCHIVE_extend_system_message.py

Lines changed: 0 additions & 76 deletions
This file was deleted.

interpreter/core/ARCHIVE_rag/ARCHIVE_get_relevant_procedures_string.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

interpreter/core/ARCHIVE_rag/ARCHIVE_local_get_relevant_procedures_string.py

Lines changed: 0 additions & 70 deletions
This file was deleted.

interpreter/core/ARCHIVE_rag/__init__.py

Whitespace-only changes.

interpreter/core/computer/terminal/languages/ARCHIVE_subprocess_python.py

Lines changed: 0 additions & 171 deletions
This file was deleted.

interpreter/core/llm/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __init__(self, interpreter):
2525
self.completions = fixed_litellm_completions
2626

2727
# Settings
28-
self.model = "gpt-4"
28+
self.model = "gpt-4-turbo-preview"
2929
self.temperature = 0
3030
self.supports_vision = False
3131
self.supports_functions = None # Will try to auto-detect

interpreter/core/utils/ARCHIVE_embed.py

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)