title |
---|
Setup |
You will need to install Python 3.10. Click here to learn how.
Run the following command in your terminal to install Open Interpreter.
pip install open-interpreter
After installation, you can start an interactive chat in your terminal by running:
interpreter
To start an interactive chat in Python, run the following:
import interpreter
interpreter.chat()
You can also pass messages to interpreter
programatically:
interpreter.chat("Get the last 5 BBC news headlines.")
Click here to learn how to stream its response into your application.