Skip to main content

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


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.6.tar.gz (86.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sik_llms-0.3.6-py3-none-any.whl (32.6 kB view details)

Uploaded Python 3

File details

Details for the file sik_llms-0.3.6.tar.gz.

File metadata

  • Download URL: sik_llms-0.3.6.tar.gz
  • Upload date:
  • Size: 86.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.24

File hashes

Hashes for sik_llms-0.3.6.tar.gz
Algorithm Hash digest
SHA256 d62084d56d2200873c0851d5370c96f3a6457b5163fa64254cd89d4433dd8fcc
MD5 d7046f9ae82df932fbd3811abc14d1fd
BLAKE2b-256 f55e8e028f9ae75e1b0ba04886fab44e32d0a0c71ed95124d628cf43cd185702

See more details on using hashes here.

File details

Details for the file sik_llms-0.3.6-py3-none-any.whl.

File metadata

  • Download URL: sik_llms-0.3.6-py3-none-any.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.24

File hashes

Hashes for sik_llms-0.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 77a9ad36c9e3e425d5ab4e3565c8d3e6e86703f97a12ed63faae4128c89c8b93
MD5 d1c9fa51307866267e2de6e5b6700908
BLAKE2b-256 5fb581ab905c9144608adbbee07e5de1c5f3132c006d6c0e7ca3ddc8f45da7c6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page