Skip to main content

Python REPL with LLM integration

Project description

pai: A Python REPL with a built in AI agent.

It's like OpenAI's Code Interpreter running in your Python REPL.

A fully functional Python REPL with a built in AI agent that can generate and run code using the history as context.

PyPI - Version PyPI - Python Version

Features

  • Full Python REPL
  • Built-in AI agent that can generate and run code in the REPL
  • REPL history is used for LLM context.
  • Edit and approve all generated code before it is executed
  • Runs locally on your machine, so it has full system and internet access
  • Supports OpenAI and llama.cpp

Demo

Installation

pip install pai-repl

Usage

OpenAI models

The default model is OpenAI GPT-4. You will need to set your OpenAI API key.

$ export OPENAI_API_KEY=<your key>
$ pai

Specify OpenAI model

$ pai --openai gpt-3.5-turbo

llama.cpp compatible models

llama-cpp-python is an optional dependency because it requires native libraries to be installed so it must be installed using the llama extra.

$ pip install pai-repl[llama]
$ pai --llama <path to model>

Starting the REPL

When you invoke pai, it will start an interactive Python REPL.

$ pai
INP> print('howdy')
OUT> howdy

Start the agent

Start the agent with pai: <prompt>.

This will generate code using the prompt and REPL history. You can accept, edit or cancel the code. Immediately after the generated code is run, the LLM is called again with the new REPL history. This loop continues until the task is complete or you cancel the agent with Ctrl+C.

INP> pai: list files in the current directory
LLM>
import os
os.listdir()

OK?> import os
    ...> os.listdir()

One off code generation

Generate code with gen: <prompt>.

The generated code will be displayed and you can accept, edit or cancel it. Unlike the pai command, the LLM is not called again after the code is run.

INP> nums = [1,2,3]
INP> gen: average nums
LLM>
# to find the average of the numbers, we sum all the elements and then divide by the number of elements

average_nums = sum(nums) / len(nums)
average_nums

OK?> # to find the average of the numbers, we sum all the elements and then
    ...> divide by the number of elements
    ...>
    ...> average_nums = sum(nums) / len(nums)
    ...> average_nums
OUT> 2.0
INP>

REPL features

reset() will reset the REPL state and history. This is useful if you want to start a new task or want to start over. No previous history will be used for LLM context.

INP> a = 1
INP> reset()
INP> a
OUT> Traceback (most recent call last):
  File "<console>", line 1, in <module>
NameError: name 'a' is not defined
INP>

Run shell commands with !

INP> !ls
OUT> README.md
     assets
     setup.py
     ...

Quickstart from the command line

You can prompt pai from the command line

$ pai "find the largest file in the current directory"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pai_repl-0.1.19.tar.gz (13.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pai_repl-0.1.19-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file pai_repl-0.1.19.tar.gz.

File metadata

  • Download URL: pai_repl-0.1.19.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.5 Darwin/22.1.0

File hashes

Hashes for pai_repl-0.1.19.tar.gz
Algorithm Hash digest
SHA256 fa4dc7170dcd1b778b9463effc016e126ffaf5aea0dc6f863a0ec53f2fcf637f
MD5 49095058ba49e2106b2bae795619045e
BLAKE2b-256 c1736393e3993256cda6341221046cbdd091938842ca48bd1047dce297199063

See more details on using hashes here.

File details

Details for the file pai_repl-0.1.19-py3-none-any.whl.

File metadata

  • Download URL: pai_repl-0.1.19-py3-none-any.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.5 Darwin/22.1.0

File hashes

Hashes for pai_repl-0.1.19-py3-none-any.whl
Algorithm Hash digest
SHA256 2e0f11744ed0d47f420a40d49fae52651bf04a1e91b08d868dcd210d328dc327
MD5 81a7e9e87b72a12bc58c97d0d93276e8
BLAKE2b-256 f0dd70bd249b42965f6c34cce997324e65feb5506699f615a3cd0b178f6c4dfa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page