Official Python client and SDK for the LibreFang Agent OS
Project description
LibreFang Python SDK
Official Python client and SDK for the LibreFang Agent OS.
Installation
pip install librefang
Two Packages
This package provides two different interfaces:
1. REST API Client (librefang.client)
Control LibreFang remotely via its REST API.
from librefang import Client
client = Client("http://localhost:4545")
# Create an agent
agent = client.agents.create(template="assistant")
print(f"Agent created: {agent['id']}")
# Send a message
reply = client.agents.message(agent["id"], "Hello!")
print(reply)
# Stream a response
for event in client.agents.stream(agent["id"], "Tell me a story"):
if event.get("type") == "text_delta":
print(event["delta"], end="", flush=True)
2. Agent SDK (librefang.sdk)
Write Python agents that run inside LibreFang.
from librefang import Agent
agent = Agent()
@agent.on_message
def handle(message: str, context: dict) -> str:
return f"You said: {message}"
agent.run()
Or use the simple input/output functions:
from librefang import read_input, respond
data = read_input()
result = f"Echo: {data['message']}"
respond(result)
Examples
See the examples/ directory for more examples:
Client Examples
client_basic.py- Basic REST API usageclient_streaming.py- Streaming responses
SDK Examples
echo_agent.py- Simple echo agent
Requirements
- Python 3.8+
License
MIT
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 librefang_sdk-0.6.8.tar.gz.
File metadata
- Download URL: librefang_sdk-0.6.8.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a225d81c00162875bdfcdc837d62f0a801d886dfe8a5a19aad3fa1db0cfa68d
|
|
| MD5 |
c579c478cd5e30c1e6d3f82685162121
|
|
| BLAKE2b-256 |
4a865f4c190f34be88c0248524add7dbe1c622171bb4a4b134cfeadecf7238b0
|
File details
Details for the file librefang_sdk-0.6.8-py3-none-any.whl.
File metadata
- Download URL: librefang_sdk-0.6.8-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdd169c611b79c72864d6d11915ec607395e1075e17cf8b5e1b724e5100f4a05
|
|
| MD5 |
c95ba900b12f810bbc09b529162f96a7
|
|
| BLAKE2b-256 |
de0a29ce2e36662d86a6a124938fc18bf95adaf9f9654c1a2de6ba331a01cf17
|