เอเจนต์/ชุดเครื่องมือ LLM รุ่นทดลองพร้อมการเข้าถึง Vim โดยตรง โดยใช้ neovim/pynvim มีไว้สำหรับใช้เป็นตัวแทนย่อยเพื่อการแก้ไขไฟล์อย่างมีประสิทธิภาพ หรือเป็นรันไทม์ของตัวแทนของตัวเอง
สร้างด้วย:
นี่คือวิดีโอสาธิตของ lil
มีตัวเลือกทั่วไปบางประการสำหรับการใช้ตัวแทน LLM เพื่อแก้ไขไฟล์:
แนวทางแก้ไข : แทนที่จะขอให้ตัวแทนเรียกใช้เครื่องมือที่มีเนื้อหาใหม่ ให้มอบเครื่องมือ "ตัวแก้ไข" ให้กับตัวแทนซึ่งจะเข้าสู่ตัวแทนย่อยพร้อมบริบทที่เหมาะสม โปรแกรมแก้ไขจำลองจะแสดงสถานะของโปรแกรมแก้ไขในรูปแบบข้อความธรรมดา รับการกดแป้นพิมพ์แต่ละครั้ง และสะท้อนถึงการอัปเดต และทำไมถึงสร้างโปรแกรมแก้ไขของคุณเองในเมื่อ LLM รู้เกี่ยวกับ Vim แล้ว?
คำเตือน : VimGPT ยังอยู่ในช่วงทดลองและยังไม่พร้อมสำหรับการผลิต
gpt-4
เท่านั้นที่สามารถใช้สิ่งนี้ได้อย่างเหมาะสม - การวิจัยเพิ่มเติม tbd คุณจะต้องติดตั้ง neovim หากคุณใช้ MacOS คุณก็สามารถ brew install neovim
ได้ จากนั้นติดตั้งจาก PyPI:
pip install vimgpt # or poetry add vimgpt
การใช้งาน CLI (มีจุดประสงค์เพื่อการสาธิต/ทดสอบ):
$ vimgpt --help
usage: vimgpt [-h] [--path PATH] [--output [OUTPUT]] [--socket SOCKET] [--loglevel {DEBUG,INFO,WARNING}] [--max-calls MAX_CALLS] [--delay-seconds DELAY_SECONDS] command
VimGPT CLI
positional arguments:
command Task for VimGPT to perform on the file, in natural language:
'Rename Bob to Bill in paragraph 2`,
'make arg `user` optional on line 34',
'rewrite this in iambic pentameter', etc.
options:
-h, --help show this help message and exit
--path PATH, -p PATH File for VimGPT to open.
NOTE: for safety, VimGPT will NOT make changes directly
to the file unless the --output flag is provided.
--output [OUTPUT], -o [OUTPUT]
Specify output file. If flag is not provided,
VimGPT will NOT make changes directly to the file.
If flag is provided without value, uses the same path as the input file.
If flag is provided with no value and there is no input file specified,
will output to 'vimgpt_output.txt'.
--socket SOCKET, -s SOCKET
Path to nvim socket of running nvim process.
If left empty, VimGPT will run in headless mode.
Suggested value: '/tmp/nvimsocket'.
--loglevel {DEBUG,INFO,WARNING}
Set the logging level (default: WARNING)
--max-calls MAX_CALLS
Maximum number of LLM calls. Default is 1000.
--delay-seconds DELAY_SECONDS
Delay in seconds. If not provided, defaults to None.
หากต้องการทำงานด้วยเสียงเรียกเข้าแบบไม่มีหัว:
vimgpt " Edit the contents of the README file to recommend Vim as the best text editor. " --path tests/samples/README.md --loglevel INFO
หากต้องการแนบไปกับอินสแตนซ์ Neovim ที่ทำงานอยู่ เพื่อให้คุณสามารถดูสิ่งที่เกิดขึ้นแบบเรียลไทม์ได้เช่นเดียวกับที่ตัวแทนทำ:
NVIM_LISTEN_ADDRESS=/tmp/nvimsocket nvim
# in separate terminal
vimgpt " Edit the contents of the README file to recommend Vim as the best text editor. " --path tests/samples/README.md --loglevel INFO --socket ' /tmp/nvimsocket '
VimGPT มีวัตถุประสงค์เพื่อใช้เป็นตัวแทนย่อย/เครื่องมือ เพื่อให้สามารถประกอบภายในตัวแทนขนาดใหญ่ได้ ดังนั้นคุณจึงสามารถเรียก vim_gpt_agent()
ได้โดยตรงโดยมีเป้าหมายเฉพาะ
from vimgpt import vimgpt_agent
original_file_content : str = '???'
new_file_content : str = vimgpt_agent (
command = 'Edit to recommend vim over emacs.' ,
content = original_file_content ,
file_path = 'does_not_matter_just_useful_for_prompt.md' ,
# socket=None, # or '/path/to/running/nvim'
# max_calls=1000, # can use prevent cycles
# delay_seconds=2, # if you want to follow in real-time more easily
)
ดู vimgpt/core.py
เพื่อหาแรงบันดาลใจ สำหรับตัวอย่าง LangChain โปรดดูที่ ./vimgpt/langchain_agents/
เพื่อดูรันไทม์ทางเลือกและตัวอย่างวิธีใช้ VimGPT เป็นเครื่องมือ
โครงการนี้ใช้บทกวี
# If you don't already have 3.11 installed
pyenv install 3.11:latest
# typical poetry install methods didn't work for me
brew install poetry
# this will create a .venv in the project directory.
# it should automatically check the right version is installed.
poetry install
# view info about your new venv
poetry env list
# activate in your shell
poetry shell
# exit poetry env
source deactivate
หากต้องการอัปเดตแพ็คเกจบน PyPI (https://pypi.org/project/vimgpt):
poetry build
poetry config pypi-token.pypi YOUR_PYPI_TOKEN
poetry publish
ใช้ ruff + black + mypy + pytest หากคุณใช้ VSCode คุณอาจต้องการทำตามคำแนะนำเหล่านี้เพื่อให้แน่ใจว่าการตั้งค่าส่วนขยาย mypy ได้รับการตั้งค่าให้ใช้ล่ามที่ใช้งานอยู่ (venv บทกวี)
black .
ruff check . --fix
mypy vimgpt
pytest -vv -s --verbose -o log_cli=true
set relativenumber
)_
หรือ |
แต่นี่ไม่ได้ผลจริงๆ