Skip to content

Commit ea93bef

Browse files
committed
fix more typos
1 parent 2569b3d commit ea93bef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

interpreter/core/computer/vision/vision.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def load(self):
2121
"Open Interpreter will use Moondream (tiny vision model) to describe images to the language model. Set `interpreter.llm.vision_renderer = None` to disable this behavior."
2222
)
2323
print(
24-
"Alternativley, you can use a vision-supporting LLM and set `interpreter.llm.supports_vision = True`."
24+
"Alternatively, you can use a vision-supporting LLM and set `interpreter.llm.supports_vision = True`."
2525
)
2626
model_id = "vikhyatk/moondream2"
2727
revision = "2024-04-02"

interpreter/terminal_interface/terminal_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646

4747
def terminal_interface(interpreter, message):
48-
# Auto run and offline (this.. this isnt right) don't display messages.
48+
# Auto run and offline (this.. this isn't right) don't display messages.
4949
# Probably worth abstracting this to something like "debug_cli" at some point.
5050
if not interpreter.auto_run and not interpreter.offline:
5151
interpreter_intro_message = [

tests/test_interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ def test_generator():
359359
flag_checker = []
360360
for chunk in interpreter.chat(
361361
tests["query"]
362-
+ "\nNo talk or plan, just immediatly code, then tell me the answer.",
362+
+ "\nNo talk or plan, just immediately code, then tell me the answer.",
363363
stream=True,
364364
display=tests["display"],
365365
):

0 commit comments

Comments
 (0)