⚡️Quick Start
pip install open-interpreter
Terminal
After installation, simply run:
interpreter -ak YOUR_API_KEY -ab https://apigateway.avangenio.net -m radiance --context_window 120000
Python
from interpreter import interpreter
interpreter.llm.model = "radiance"
interpreter.llm.api_key = "YOUR_API_KEY"
interpreter.llm.api_base = "https://apigateway.avangenio.net"
interpreter.chat("Plot AAPL and META's normalized stock prices") # Executes a single command
interpreter.chat() # Starts an interactive chat
GitHub Codespaces
Press the ,
key on this repository's GitHub page to create a codespace. After a moment, you'll receive a cloud virtual machine environment pre-installed with open-interpreter. You can then start interacting with it directly and freely confirm its execution of system commands without worrying about damaging the system.