Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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.
pip install pai-repl
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-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>
When you invoke pai
, it will start an interactive Python REPL.
$ pai
INP> print('howdy')
OUT> howdy
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()
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>
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
...
You can prompt pai from the command line
$ pai "find the largest file in the current directory"
FAQs
Python REPL with LLM integration
We found that pai-repl demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.