Skip to content

Commit

Permalink
Local II
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianLucas committed May 31, 2024
1 parent 1d055b4 commit 9b38776
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion interpreter/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,15 @@
from .default_system_message import default_system_message
from .llm.llm import Llm
from .respond import respond
from .server import server
from .utils.telemetry import send_telemetry
from .utils.truncate_output import truncate_output

try:
from .server import server
except:
# Dependencies for server are not generally required
pass


class OpenInterpreter:
"""
Expand Down

0 comments on commit 9b38776

Please sign in to comment.