Paaf is an Agent Framework for building AI agents
Project description
PAAF
PAAF (Peter Akande Agentic Framwork) is a simple Agentic framwork built to be used for all my LLM applications.
Example usage
from paaf.agents.react import ReactAgent
from paaf.llms.openai_llm import OpenAILLM
from paaf.tools.tool_registory import ToolRegistry
from serper import search as serper_search
from wiki import wiki_search
tool_registory = ToolRegistry()
tool_registory.register_tool(serper_search)
tool_registory.register_tool(wiki_search)
@tool_registory.tool()
def my_name() -> str:
"""
Get the name of the user.
Returns:
str: The name of the user.
"""
return "John Doe"
if __name__ == "__main__":
llm = OpenAILLM()
react_agent = ReactAgent(
llm=llm,
tool_registry=tool_registory,
max_iterations=5,
)
response = react_agent.run("Who is older, Cristiano Ronaldo or Lionel Messi?")
print("Response:", response.content)
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
paaf-0.1.12.tar.gz
(28.6 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
paaf-0.1.12-py3-none-any.whl
(41.7 kB
view details)
File details
Details for the file paaf-0.1.12.tar.gz.
File metadata
- Download URL: paaf-0.1.12.tar.gz
- Upload date:
- Size: 28.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2e7058a7d3dcc4c6460262de8851fcab00167269ede7a1c283d99c4627f7f3d
|
|
| MD5 |
6323231622f6da28c746d113bd61eb2e
|
|
| BLAKE2b-256 |
00c5b2132dd3329d89b01691521a5730fd3a9ecc8c6509b954b7bf9b942d7ce7
|
File details
Details for the file paaf-0.1.12-py3-none-any.whl.
File metadata
- Download URL: paaf-0.1.12-py3-none-any.whl
- Upload date:
- Size: 41.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73756be134697f9f1ab19a77bbfe40d4e06f5802ee932372bd093cd37c568d76
|
|
| MD5 |
431c9d37f6520360bd03f26f80c25254
|
|
| BLAKE2b-256 |
cd780ef511f76ade3b744ee70c1071915ef7d80b9ea9f64e81381257735a0f7b
|