Agentic Fabriq SDK: high-level client, CLI tool, DX helpers, and auth for AI agents
Project description
Agentic Fabriq SDK
agentic-fabriq-sdk provides a Python SDK and CLI tool for interacting with Agentic Fabriq.
What's included:
- 🐍 Python SDK: High-level client (
af_sdk.FabriqClient) and DX layer - 🛠️ CLI Tool:
afctlcommand for authentication and management - 🔐 OAuth2/PKCE: Secure browser-based authentication with token storage
Install
pip install agentic-fabriq-sdk
This installs both the Python library and the afctl CLI tool.
Quickstart
CLI Tool
Authenticate and manage your Agentic Fabriq resources:
# Login with OAuth2 (browser opens automatically)
afctl auth login
# Check authentication status
afctl auth status
# List available tools
afctl tools list
# List agents
afctl agents list
# Get help
afctl --help
Python SDK
from af_sdk.fabriq_client import FabriqClient
TOKEN = "..." # Bearer JWT for the Fabriq Gateway
BASE = "https://dashboard.agenticfabriq.com"
async def main():
async with FabriqClient(base_url=BASE, auth_token=TOKEN) as af:
# List tools and agents
tools = await af.list_tools()
agents = await af.list_agents()
# Invoke Slack tools
result = await af.invoke_connection("my-slack", method="get_channels")
# Post a Slack message
await af.invoke_connection(
"my-slack",
method="post_message",
parameters={"channel": "test", "text": "Hello from SDK!"}
)
# Get Gmail emails
result = await af.invoke_connection(
"gmail_work",
method="get_emails",
parameters={"max_results": 10, "q": "is:unread"}
)
emails = result.get("emails", [])
# Send an email
await af.invoke_connection(
"gmail_work",
method="send_email",
parameters={
"to": "recipient@example.com",
"subject": "Hello from SDK",
"body": "This email was sent via Agentic Fabric SDK!"
}
)
DX orchestration:
from af_sdk.dx import ToolFabric, AgentFabric, Agent, tool
slack = ToolFabric(provider="slack", base_url="https://dashboard.agenticfabriq.com", access_token=TOKEN, tenant_id=TENANT)
agents = AgentFabric(base_url="https://dashboard.agenticfabriq.com", access_token=TOKEN, tenant_id=TENANT)
@tool
def echo(x: str) -> str:
return x
bot = Agent(
system_prompt="demo",
tools=[echo],
agents=agents.get_agents(["summarizer"]),
base_url="https://dashboard.agenticfabriq.com",
access_token=TOKEN,
tenant_id=TENANT,
provider_fabrics={"slack": slack},
)
print(bot.run("Summarize my Slack messages"))
License
Apache-2.0
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 agentic_fabriq_sdk-0.1.39.tar.gz.
File metadata
- Download URL: agentic_fabriq_sdk-0.1.39.tar.gz
- Upload date:
- Size: 66.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.12.12 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8d4347958b3c3ad7868e8d6f621b6899f70697b79f20f3ba718011c541fd0c3
|
|
| MD5 |
c36006b7bbd38b8bfc1e5152aaa65b15
|
|
| BLAKE2b-256 |
41734fc43d0c3e67b18b6911f3e20e312d8bce4fc39f50081c9df06a3fe12d40
|
File details
Details for the file agentic_fabriq_sdk-0.1.39-py3-none-any.whl.
File metadata
- Download URL: agentic_fabriq_sdk-0.1.39-py3-none-any.whl
- Upload date:
- Size: 82.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.12.12 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31df80debc081e8a464405f5fe3ae0bb1aba9707304858a2f1f7944c09b1e8a2
|
|
| MD5 |
f5c3655135590979685bae1a5538ee87
|
|
| BLAKE2b-256 |
2446bb4b1fa447ed889e06947981e7b760831aa55914ce56f05e4177b54f4ad7
|