No project description provided
Project description
hi, a human interpreter
A truly natural scripting language
hi runs your natural language
Install humanscript
hi script is provided in python-hi pip package
pip install -U python-hi
you can also clone this repository and run "poetry install"
Be careful The converted bash can contain weird things. you can run hi script initially with HI_EXECUTE=false to check the resulting code before executing.
Example
hi could you list current dir
since ? is special character in shell, if you want to use ?, just add quotation mark around it,like this
hi "could you list current dir?"
hi can also be used as shellbang interpreter create a file: progressbar.hi
#!/usr/bin/env hi
could you display a progress bar from 1 to 100?
and chmod +x ./progressbar.hi then ./progressbar.hi It can be executed like any other script.
$ ./progressbar.hi
#!/usr/bin/env bash
echo "Progress:"
for ((i=1; i<=100; i++))
do
echo -ne "$i%\r"
sleep 0.1
done
echo "Complete!"%
The code is sent to LLM and then convert to bash and then execute, while also cache for next time fast reexecute(then it doesn't need to query the LLM again)
Usage
Config hi
We need to add it to ~/.hi
HI_API_KEY: sk-xxx
HI_MODEL: gpt-4
#HI_API: if you have a different base to forward other than https://api.openai.com/v1, it's set using openai.openai_api_base=this value
Now you can run hi script either from command line or as an shellbang interpreter(check out samples/*.hi)
Cache invalidation
after you first run the script, the converted bash code will be cached in ~/.hicache/ , you can run
hi cache clear
to completely clear the cache.
Configuration that can change runtime behavior
you can set the following variables in ~/.hi(in yaml format) or use in command line like
$ HI_API_KEY="sk-xxx" hi ...
HI_EXECUTE
you can use HI_EXECUTE to control the execution of the hi script
$ HI_EXECUTE="false" hi ...
HI_API
Default: https://api.openai.com/v1
A server following OpenAI's Chat Completion API.
Many local proxies exist that implement this API in front of locally running LLMs like Llama 2. LM Studio is a good option.
HI_API="http://localhost:1234/v1"
HI_API_KEY
Default: unset
The API key to be sent to the LLM backend. Only needed when using OpenAI.
HI_API_KEY="sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
HI_MODEL
Default: gpt-4
The model to use for inference.
HI_MODEL="gpt-3.5"
HI_EXECUTE
Default: true
Whether or not the hi interpreter should automatically execute the generated code on the fly.
If false the generated code will not be executed and instead be streamed to stdout.
HI_EXECUTE="false"
HI_REGENERATE
Default: false
Whether or not the hi interpreter should regenerate a cached hiscript.
If true the hiscript will be reinterpreted and the cache entry will be replaced with the newly generated code. Due to the nondeterministic nature of LLMs each time you reinferpret a hiscript you will get a similar but slightly different output.
HI_REGENERATE="true"
Inspiration
This project is highly inspired by humanscript project(https://github.com/lukechilds/humanscript), but I think hi is a better name, also hi can be interpreted as short for human input, human inteprete,human interface, human inferenceinterpreter etc, and just for fun. Also using python is easier for plugin architecture, the way I think is in different project/workspace, maybe there will be different 'hi' implementations, so .hi in that directory with plugin_type="metagpt" will run some metagpt command at that directory.
License
MIT © femto Zheng
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
Built Distribution
File details
Details for the file python_hi-0.1.3.tar.gz
.
File metadata
- Download URL: python_hi-0.1.3.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/21.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9827b9daa3f9e52a0736c9b0d25cb5300e2b1e0805a3b7e653350a201e74f123 |
|
MD5 | 03ef78261094c361e57faaa5e33406cb |
|
BLAKE2b-256 | 9d2327cced5692c0056204f06b649f138961984dda375337da1d4d8db16d91d4 |
File details
Details for the file python_hi-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: python_hi-0.1.3-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/21.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f50704312091ccb678d0adbeb633dae7f36a6ca886c37684b71a30948ef68145 |
|
MD5 | 16ce9c4a35686e8f6012eea5f6f975ad |
|
BLAKE2b-256 | 9e18986f2629dba3163821222dbd9a5c9ac2ade751cffbdfd1037da0efbf88de |