Skip to content

Commit

Permalink
fix for Files property missing on Computer module
Browse files Browse the repository at this point in the history
  • Loading branch information
dimo committed Mar 21, 2024
1 parent 68ab324 commit a080222
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion interpreter/core/computer/computer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .skills.skills import Skills
from .sms.sms import SMS
from .terminal.terminal import Terminal

from .files.files import Files

class Computer:
def __init__(self, interpreter):
Expand All @@ -39,6 +39,7 @@ def __init__(self, interpreter):
self.skills = Skills(self)
self.docs = Docs(self)
self.ai = Ai(self)
self.files = Files(self)

self.emit_images = True
self.api_base = "https://api.openinterpreter.com/v0"
Expand Down

0 comments on commit a080222

Please sign in to comment.