No project description provided
Project description
natural-python
Gitlab repository | Github mirror | Blog post
This is a wrapper around the Python REPL which uses LLMs to search for code that matches your natural language specification and Python constraints.
Naturally, from a safety perspective the output of an LLM can only be assumed to be adversarial. Indeed, executing the output of an LLM is an inherently dangerous approach to implementing a REPL. Use at your own peril.
Example
Hello world session: given this input
>>> # Create a list with the days of the week, call it 'days'
>>> # finally:
+++ assert days[0] == 'Sunday'
+++
the interpreter will write the following code:
>>> days = [
>>> 'Sunday',
>>> 'Monday',
>>> 'Tuesday',
>>> 'Wednesday',
>>> 'Thursday',
>>> 'Friday',
>>> 'Saturday',
>>> ]
>>> assert days[0] == 'Sunday'
Installation
pip install --user --upgrade git+https://gitlab.com/da_doomer/natural-python.git
(You can remove --upgrade
if your pip is reasonably updated)
Then simply execute natural-python --output my_script.py
in your shell (--output
is an optional parameter).
The first time the interpreter is executed, it will ask for an API key. Currently, the interpreter supports GooseAI and OpenAI endpoints.
Usage
Run natural-python --help
to get the following:
usage: natural-python [-h] [--engine-id ENGINE_ID] [--sample-n SAMPLE_N] [--sample-temperature SAMPLE_TEMPERATURE] [--max-sample-tokens MAX_SAMPLE_TOKENS]
[--python-shell PYTHON_SHELL] [--show-engines] [--output OUTPUT]
Natural Python interpreter.
options:
-h, --help show this help message and exit
--engine-id ENGINE_ID
Language model engine used for sampling.
--sample-n SAMPLE_N Number of samples drawn from the language model when executing an instruction.
--sample-temperature SAMPLE_TEMPERATURE
Sampling temperature.
--max-sample-tokens MAX_SAMPLE_TOKENS
Maximum number of tokens in each sample.
--python-shell PYTHON_SHELL
Engine used for sampling.
--show-engines Display available language model engines.
--output OUTPUT Write the source code to a file at the end of the session.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file natural-python-0.1.8.tar.gz
.
File metadata
- Download URL: natural-python-0.1.8.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.4 Linux/6.0.12-76060006-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6907ba4efde94adbdb737fc759df709b319b1cadf24b16a5a7e5d06caba5395d |
|
MD5 | 8ff3869906beeba5397accb53f35fa8d |
|
BLAKE2b-256 | 1aa27d8124ca3cabd70f240ec4e939d182a45c7c2def31477d5a680097a4171e |
Provenance
File details
Details for the file natural_python-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: natural_python-0.1.8-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.4 Linux/6.0.12-76060006-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dce55cda8f9fc8218ad86dcebc0e06ed61ffb054fa403319dc22e8a54a0d68cc |
|
MD5 | 0fc4b6fdfae12c68f2aef93bcff13264 |
|
BLAKE2b-256 | 0e8492c6fefbc2eb2007794f1691c36dfc54bef9b6ec107f0a08861b21ffd002 |