Lightweight, easy, and consistent LLM-interface across providers and functionality.
Project description
sik-llms
- Easy llm interface; eliminates parsing json responses or building up json for functions/tools
- OpenAI and any OpenAI-compatible API
- Anthropic
- Sync and Async support
- Functions/Tools
- Structured Output
- Supports Anthropic models even though structured output is not natively supported in their models
- Reasoning mode in OpenAI and Anthropic
- ReasoningAgent that iteratively reasons and calls tool
See examples
from sik_llms import create_client, user_message, ResponseChunk
model = create_client(
model_name='gpt-4o-mini', # or e.g. 'claude-3-7-sonnet-latest'
temperature=0.1,
)
messages = [
system_message("You are a helpful assistant."),
user_message("What is the capital of France?"),
]
# sync
response = model(messages=messages)
# async
response = await model.run_async(messages=messages)
# async streaming
responses = []
summary = None
async for response in model.stream(messages=messages):
if isinstance(response, TextChunkEvent):
print(response.content, end="")
responses.append(response)
else:
summary = response
print(summary)
Installation
uv install sik-llms or pip install sik-llms
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
sik_llms-0.3.10.tar.gz
(115.1 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
sik_llms-0.3.10-py3-none-any.whl
(38.3 kB
view details)
File details
Details for the file sik_llms-0.3.10.tar.gz.
File metadata
- Download URL: sik_llms-0.3.10.tar.gz
- Upload date:
- Size: 115.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efecea464bcf59fe2813f7591683795c86d2352e90a6657f5219f2a7c315887a
|
|
| MD5 |
3a01d7458801de8e321faa646e586801
|
|
| BLAKE2b-256 |
65cc2c5be5ede99a36675371406e56d897fdd345d2f745f8113c10da406b7908
|
File details
Details for the file sik_llms-0.3.10-py3-none-any.whl.
File metadata
- Download URL: sik_llms-0.3.10-py3-none-any.whl
- Upload date:
- Size: 38.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80be9eee9ee088c67f2c15543bdac88c6863a37ede887f2d705e8959bfbec6d8
|
|
| MD5 |
d5de4bfa9ace6b925534e85302a05e86
|
|
| BLAKE2b-256 |
0999adc5f218ff71c86fbc2c91dcb5673d2a3e08898eb93e332326b10a999f1f
|