Skip to content

Commit

Permalink
Merge pull request #12 from KillianLucas/killian/development
Browse files Browse the repository at this point in the history
Restored Tests
  • Loading branch information
KillianLucas authored Aug 20, 2023
2 parents e06e8b7 + ef2e817 commit 60c1a17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 0 additions & 4 deletions interpreter/utils_test.py

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "open-interpreter"
packages = [
{include = "interpreter"},
]
version = "0.0.293"
version = "0.0.294"
description = "Ask GPT-4 to run code locally."
authors = ["Killian Lucas <[email protected]>"]
readme = "README.md"
Expand Down
5 changes: 2 additions & 3 deletions tests/test_interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
interpreter.model = "gpt-3.5-turbo-0613"
interpreter.temperature = 0

'''

def test_hello_world():
interpreter.reset()
messages = interpreter.chat("""Please reply with just the words "Hello, World!" and nothing else. Do not run code.""", return_messages=True)
Expand All @@ -24,5 +24,4 @@ def test_nested_loops_and_multiple_newlines():

def test_markdown():
interpreter.reset()
interpreter.chat("""Hi, can you test out a bunch of markdown features? Try writing a fenced code block, a table, headers, everything. DO NOT write the markdown inside a markdown code block, just write it raw.""")
'''
interpreter.chat("""Hi, can you test out a bunch of markdown features? Try writing a fenced code block, a table, headers, everything. DO NOT write the markdown inside a markdown code block, just write it raw.""")

0 comments on commit 60c1a17

Please sign in to comment.