Library for building prompts for LLMs
Project description
Prompt Builder
Library for building prompts and agents with LLMs.
Installation
From PyPI:
pip install promptbuilder
From source:
git clone https://github.com/kapulkin/promptbuilder.git
cd promptbuilder
pip install -e .
Features
- Prompt templates with variables and content tags
- Structured output with TypeScript-like schema definition
- LLM client with native structured output support and caching option
- Integration with multiple LLM providers through aisuite
- Agents with routing based on tools
- Tools as agent for flexibility and scalability
Quick Start
from promptbuilder.llm_client import LLMClient
from promptbuilder.prompt_builder import PromptBuilder
# Build prompt template
prompt_template = PromptBuilder() \
.text("What is the capital of ").variable("country").text("?") \
.build()
# Use with LLM
llm_client = LLMClient(model="your-model", api_key="your-api-key")
response = llm_client.make_request(
prompt_template.render(country="France")
)
print(response)
See examples for more details.
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a pull request.
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
promptbuilder-0.2.1.tar.gz
(8.5 kB
view details)
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 promptbuilder-0.2.1.tar.gz.
File metadata
- Download URL: promptbuilder-0.2.1.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59438011688c2d215644f904ce20bb406d41833571e42ef5c25dc62a2ecf5de6
|
|
| MD5 |
15952fe15bd583119688273f90d50fd1
|
|
| BLAKE2b-256 |
94de752e91c5e4220d78dd897e07b06773820807b35add787809a1726baa1069
|
File details
Details for the file promptbuilder-0.2.1-py3-none-any.whl.
File metadata
- Download URL: promptbuilder-0.2.1-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb986485410716c6452492c35ab9ecfcbd2542603a0f808d99edc8b41c8acf43
|
|
| MD5 |
6349f064b440d410ab8d5171baad4192
|
|
| BLAKE2b-256 |
2291bfaea434d303f670c01e78795e3eca1100f6f7763e7ab7bd1af9d74f6671
|