A lightweight Python framework for adding agent capabilities (tools calling, memory, structured outputs) to single custom LLM functions
Project description
AgenticWrapper
English | 简体中文
AgenticWrapper is an extremely lightweight Python Agent framework that wraps your custom LLM function, enabling it with Agent capabilities, including tool calling, memory management, and structured output.
AgenticWrapper has no runtime dependencies.
Quick Start
Installation
pip install AgenticWrapper
Basic Usage
from AgenticWrapper import Agent
async def llm_func(messages: list[dict[str, str]]) -> str:
# Assume this is your custom LLM function
return "Hello, I'm AgenticWrapper."
agent = Agent(llm_func)
response = await agent.query("Hello")
print(response)
agent.clear_memory()
Structured Output
Use Python dataclass to define the output structure:
@dataclass
class SearchResult:
query: str
results: List[str]
total_count: int
response = await agent.query("Search for relevant content", structured_output_type=SearchResult)
assert isinstance(response, SearchResult)
Tool Calling
Define a tool function, preferably with function documentation:
async def get_weather(location: str) -> str:
"""Get weather information"""
# Simulate an API call
await asyncio.sleep(0.1)
if location.lower() == "london":
return "The weather is clear, with a temperature of 15°C."
elif location.lower() == "paris":
return "The weather is clear, with a temperature of 18°C."
else:
return f"I don't know the weather for {location}."
Use the tool in the Agent:
agent = Agent(llm_interaction_func=mock_llm_func, tools=[get_weather])
response = await agent.query("Check the weather in london")
print(response)
Tool function parameters types must be valid json types, return types must be str.
More Examples
More examples can be found in example.py.
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
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 agenticwrapper-0.1.1.tar.gz.
File metadata
- Download URL: agenticwrapper-0.1.1.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7ecab93c19f87d29a0222ebded61b1971b4db622840c76bc33d1e01388b50e1
|
|
| MD5 |
6ede9594fde74b0900edafc485844882
|
|
| BLAKE2b-256 |
1e648c07fb034d6ada16c0fb09e214bc0704dc252146f4329b3a33da9b01755a
|
File details
Details for the file agenticwrapper-0.1.1-py3-none-any.whl.
File metadata
- Download URL: agenticwrapper-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24cf2cb42789187aef3d36667d0cdb5e0a137660029a31a86fbe589c7b9419f2
|
|
| MD5 |
c0fc850cb75fd2955b0ace87960d7ae6
|
|
| BLAKE2b-256 |
dd5e3326a44dd8b088b6ff15a4f0a393b0632b17400b49083eaa2464c76409d7
|