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.7.tar.gz
(95.4 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.7-py3-none-any.whl
(36.4 kB
view details)
File details
Details for the file sik_llms-0.3.7.tar.gz.
File metadata
- Download URL: sik_llms-0.3.7.tar.gz
- Upload date:
- Size: 95.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.24
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8849380d920071016f744be3d698fbe7ede3882a45a356c77bc301e4cd243505
|
|
| MD5 |
90088cd4d238bb638a414512c4a7a563
|
|
| BLAKE2b-256 |
4abf552cb91c6ee061ffb9c081753fc8c426230190697fe7beee593bdbbebd51
|
File details
Details for the file sik_llms-0.3.7-py3-none-any.whl.
File metadata
- Download URL: sik_llms-0.3.7-py3-none-any.whl
- Upload date:
- Size: 36.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.24
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edc62a14a9e94b51584d9d14b73b13db468b7010bf3af3f601cc79ff8a227bd7
|
|
| MD5 |
79ef331cc18bf84d16ca22661ea299d2
|
|
| BLAKE2b-256 |
abcefe94910cc67fc23c497f6f1c1f8557ac68b5380febaa55421ecee6983ee2
|