A Python utils SDK for xpander.ai services.
Project description
xpander_utils Package Development Guide
Local Development
To set up the project locally, follow these steps:
Local Build and Link
Install the package in editable mode:
pip install -e .
Usage
To use the xpander-utils package, install it via pip:
pip install xpander-utils
Example Code
Below is an example of how to use the SmolAgentsAdapter for bridging xpander.ai and smolagents:
from smolagents import OpenAIServerModel, ToolCallingAgent, ActionStep, MultiStepAgent
from xpander_utils.sdk.adapters import SmolAgentsAdapter
llm_api_key = "{YOUR_LLM_KEY}"
# get xpander agent
xpander = SmolAgentsAdapter(agent_id="{YOUR_AGENT_ID}", api_key="{YOUR_API_KEY}")
# declare model
model = OpenAIServerModel(
model_id="gpt-4o",
api_key=llm_api_key
)
# init xpander task
prompt = "get the longest tag"
xpander.add_task(input=prompt)
# convert xpander tools to smolagents
# create the agent
agent = ToolCallingAgent(step_callbacks=[xpander.step_callback()],tools=xpander.get_tools(),model=model,prompt_templates={"system_prompt": xpander.get_system_prompt()})
# init memory from xpander
xpander.init_memory(agent=agent)
result = agent.run(task=prompt, reset=False)
Package Information
- Package Name:
xpander_utils - Version:
0.0.1 - Author:
xpanderAI - Email:
dev@xpander.ai - Description: A Python utilities SDK for xpander.ai services.
- URL: xpander.ai
Dependencies
The package requires the following dependencies:
pydanticlogurusmolagentsxpander-sdk
Supported Python Versions
This package requires Python >=3.12.17.
License
This project is licensed under the MIT License.
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 xpander_utils-0.0.52.tar.gz.
File metadata
- Download URL: xpander_utils-0.0.52.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb5a4d1f94434c5563536c8105b6357ab79e37ea05b96d6657d2a6e6ed367ed1
|
|
| MD5 |
a165e412e78c8bc53941ea13f8ad5aef
|
|
| BLAKE2b-256 |
27ccffee1330d27be3d95c7e2173cd0761acc6ccab40e28180e525b02fadb9d1
|
File details
Details for the file xpander_utils-0.0.52-py3-none-any.whl.
File metadata
- Download URL: xpander_utils-0.0.52-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b35a6617651384c3bbd176c915a25053948574927c4c96fa6cd99f30e5465911
|
|
| MD5 |
65415149248c01be42be57d3c6524e64
|
|
| BLAKE2b-256 |
f86bf2462e758729508b12b3685d9f93511e8076af59b83c7d95841423cf2612
|