build extremely 'nano' llm workflows
Project description
xnano
pip install xnano
Examples
The most extensive llm completion function any library provides
import xnano as x
response = x.completion(
# messages can be a list of messages or just a string
# you can also pass a list of lists of messages to create batch completions
messages = "what os am i running?",
# any litellm model is supported
model = "openai/gpt-4o-mini",
# tools can be python functions, pydantic models, openai functions or even strings!
# string tools are generated & optionally executed at runtime in a sandboxed environment
tools = ["run_cli_command"],
# automatically run tools!
run_tools = True,
# structured responses with instructor!
# response models can be defined as pydantic models, or just like tools; even strings, lists of strings & dictionaries!
# you can also pass in a generic type into the list or as is (str, int, etc...)
response_model = ["operating_system", "version"]
)
print(response)
# OUTPUT
Response(operating_system='Darwin', version='23.6.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
xnano-0.0.39.tar.gz
(9.0 MB
view details)
Built Distribution
xnano-0.0.39-py3-none-any.whl
(103.6 kB
view details)
File details
Details for the file xnano-0.0.39.tar.gz
.
File metadata
- Download URL: xnano-0.0.39.tar.gz
- Upload date:
- Size: 9.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ac4069938020ccf5d5a8ad027fc9d3c2713f9ccf8ed0e58fbe07474fbcbb361 |
|
MD5 | ed8cb4e61ee8df159924248ff26264c0 |
|
BLAKE2b-256 | d8aaa28ccedc1858ea7d630c2a17460ab943f1dc783fee962de41de93ac36aad |
File details
Details for the file xnano-0.0.39-py3-none-any.whl
.
File metadata
- Download URL: xnano-0.0.39-py3-none-any.whl
- Upload date:
- Size: 103.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43b699949c44a658094e5bdce9fb4693650ed6e639b2644db59403f7cfdcc4fa |
|
MD5 | 4969da9e1a0b6efde812732ba5f32176 |
|
BLAKE2b-256 | 3948d9527035a8ddb0b8756cdf96754823d0bf95a7413d39682e37b3a6ceaf8c |