Open Interpreter

From Notes_Wiki

Home > Local system based AI tools > Open Interpreter

About

Interpreter can write code and will prompt before running on the system:


Installation

As root ensure python3-pip package is installed:

dnf -y install python3-pip

As a non-root / local user we can install interpreter via:

pip install open-interpreter


Executing

This install interpreter in ~/.local/bin path. Then if this is already in path we can run interpreter via:

interpreter --local

Ideally for this local Ollama should be setup with at least one model eg phi4 for it to work properly.


Sample Queries

You can ask queries such as

  • What operating system is installed on this system?
  • Which are top 5 processes using most RAM on this system?
  • How much free RAM is there on this computer?

and it quickly writes code to get answer and prompts (y/n) before running it.


Usage

Use "%reset" to reset old chat and start new session.

Use 'Ctrl+C' to quit


Refer:


Home > Local system based AI tools > Open Interpreter