Difference between revisions of "Open Interpreter"
From Notes_Wiki
m |
m |
||
Line 1: | Line 1: | ||
[[Main Page|Home]] > [[Local system based AI tools]] > [[Open Interpreter]] | [[Main Page|Home]] > [[Local system based AI tools]] > [[Open Interpreter]] | ||
=About= | |||
Interpreter can write code and will prompt before running on the system: | Interpreter can write code and will prompt before running on the system: | ||
=Installation= | |||
As root ensure python3-pip package is installed: | As root ensure python3-pip package is installed: | ||
<pre> | <pre> | ||
Line 13: | Line 16: | ||
</pre> | </pre> | ||
=Executing= | |||
This install interpreter in ~/.local/bin path. Then if this is already in path we can run interpreter via: | This install interpreter in ~/.local/bin path. Then if this is already in path we can run interpreter via: | ||
<pre> | <pre> | ||
Line 21: | Line 26: | ||
=Sample Queries= | |||
You can ask queries such as | You can ask queries such as | ||
* What operating system is installed on this system? | * What operating system is installed on this system? | ||
Line 27: | Line 33: | ||
and it quickly writes code to get answer and prompts (y/n) before running it. | 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 "%reset" to reset old chat and start new session. | ||
Use 'Ctrl+C' to quit | |||
Refer: | Refer: |
Revision as of 10:17, 5 July 2025
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: