Lightweight tool to manage contexts and update code with LLMs
Project description
About
PatchLLM is a command-line tool that lets you flexibly build LLM context from your codebase using glob patterns, URLs, and keyword searches. It then automatically applies file edits directly from the LLM's response.
Usage
PatchLLM is designed to be used directly from your terminal. The core workflow is to define a scope of files, provide a task, and choose an action (like patching files directly).
1. Initialize a Scope
The easiest way to get started is to run the interactive initializer. This will create a scopes.py file for you, which holds your saved scopes.
patchllm --init
This will guide you through creating your first scope, including setting a base path and file patterns. You can add multiple scopes to this file for different projects or tasks.
A generated scopes.py might look like this:
# scopes.py
scopes = {
"default": {
"path": ".",
"include_patterns": ["**/*.py"],
"exclude_patterns": ["**/tests/*", "venv/*"],
"urls": ["https://docs.python.org/3/library/argparse.html"]
},
"docs": {
"path": "./docs",
"include_patterns": ["**/*.md"],
}
}
2. Run a Task
Use the patchllm command with a scope, a task, and an action flag like --patch (-p).
# Apply a change using the 'default' scope and the --patch action
patchllm -s default -t "Add type hints to the main function in main.py" -p
The tool will then:
- Build a context from the files and URLs matching your
defaultscope. - Send the context and your task to the configured LLM.
- Parse the response and automatically write the changes to the relevant files.
All Commands & Options
Core Patching Flow
-s, --scope <name>: Name of the scope to use from yourscopes.pyfile.-t, --task "<instruction>": The task instruction for the LLM.-p, --patch: Query the LLM and directly apply the file updates from the response. This is the main action flag.
Scope Management
-i, --init: Create a new scope interactively.-sl, --list-scopes: List all available scopes from yourscopes.pyfile.-ss, --show-scope <name>: Display the settings for a specific scope.
I/O & Context Management
-co, --context-out [filename]: Export the generated context to a file (defaults tocontext.md) instead of running a task.-ci, --context-in <filename>: Use a previously saved context file as input for a task.-tf, --to-file [filename]: Send the LLM response to a file (defaults toresponse.md) instead of patching directly.-tc, --to-clipboard: Copy the LLM response to the clipboard.-ff, --from-file <filename>: Apply patches from a local file instead of an LLM response.-fc, --from-clipboard: Apply patches directly from your clipboard content.
General Options
--model <model_name>: Specify a different model (e.g.,gpt-4o). Defaults togemini/gemini-1.5-flash.--voice: Enable voice recognition to provide the task instruction.
Setup
PatchLLM uses LiteLLM under the hood. Please refer to their documentation for setting up API keys (e.g., OPENAI_API_KEY, GEMINI_API_KEY) in a .env file and for a full list of available models.
To use the voice feature (--voice), you will need to install extra dependencies:
pip install "speechrecognition>=3.10" "pyttsx3>=2.90"
# Note: speechrecognition may require PyAudio, which might have system-level dependencies.
License
This project is licensed under the MIT License. See the LICENSE file for details.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file patchllm-0.2.2.tar.gz.
File metadata
- Download URL: patchllm-0.2.2.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ead019cbe1d3f8ece9ac46e3789ba198f88699391a5ffa66de8109d3a6bd318
|
|
| MD5 |
1a125bd7ca93f74b5621271e60028f9f
|
|
| BLAKE2b-256 |
571a6129e7afe614bff0811f88861541f7c310cce6f7ee76daa94e65e9d85984
|
File details
Details for the file patchllm-0.2.2-py3-none-any.whl.
File metadata
- Download URL: patchllm-0.2.2-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
310045257155afc41cbdf9c336e25b4ffdfc95a19ce77bc26928d206a7f5de51
|
|
| MD5 |
386321c20a87d4dbc8a46f01b93346de
|
|
| BLAKE2b-256 |
1cce3bbe3b0ade342cbd61906c964c0d875ed2e38ab58e28e9d0c91c4fb6ff93
|