● Open Interpreter
Get early access to the desktop app | Documentation
pip install open-interpreter
Not working? Read our setup guide.
interpreter
Open Interpreter lets LLMs run code (Python, Javascript, Shell, and more) locally. You can chat with Open Interpreter through a ChatGPT-like interface in your terminal by running $ interpreter
after installing.
This provides a natural-language interface to your computer's general-purpose capabilities:
- Create and edit photos, videos, PDFs, etc.
- Control a Chrome browser to perform research
- Plot, clean, and analyze large datasets
- ...etc.
Demo
Open.Interpreter.Demo.mp4
An interactive demo is also available on Google Colab:
Along with an example voice interface, inspired by Her:
Quick Start
pip install open-interpreter
Terminal
After installation, simply run interpreter
:
interpreter
Python
from interpreter import interpreter
interpreter.chat("Plot AAPL and META's normalized stock prices")
…