Delusion
✨ The missing conveniences in generative models ✨📦 Description
A small toolkit for generative models, with practical conveniences built in: such as caching, fast imports, syntactic sugars, opinionated architecture, curated providers, and more.
- Message classes with type-safe structured output generics, auto validation (chat)
- Modular: Easily write your implementations or modify existing ones.
- Minimal: Avoids the complexity and commitment of a full framework.
📦 Usage
Simply add the delusion PyPI package to your project and use it:
[project]
dependencies = ["delusion"]
Chat
from delusion.chat.option.ollamax import Ollama
from pydantic import BaseModel, Field
class Country(BaseModel):
name: str
capital: str
languages: set[str] = Field(
description="Officially recognized languages"
)
chat = Ollama().cache().serve()
chat.gemma4("e2b").pull()
chat.send("Tell me about Canada, its capital and spoken languages.")
# Your linter should properly point to the class
canada = chat.generate(schema=Country)
print(canada.model)
assert (canada.model.name == "Canada")
assert (canada.model.capital == "Ottawa")
assert (canada.model.languages == {"English", "French"})
📦 Standards
In an effort to minimize xkcd 927, Delusion only introduces abstractions that provide clear value or represent shared semantics across providers, proxying or extending native packages whenever available.
For example, the Options class for ollama models shall only apply to itself:
import ollama
local = Ollama(model="gemma4:e2b")
cloud = OpenAI(model="gpt-whatever")
isinstance(local.options, ollama.Options) # True
isinstance(cloud.options, ollama.Options) # False
Although both support .temperature = 0.0, the intended use is:
# Individual settings
if os.getenv("PRODUCTION", None):
chat = OpenAI(model=...)
chat.options.temperature = 0.0
else:
chat = Ollama(model=...)
chat.options.temperature = 0.0
# Shared interface
chat.send(...)
chat.generate(schema=...)
Same for models: rather than over-abstracting capabilities, quantization, names, variants, and other provider-specific details, some code duplication is natural to keep it minimal and decoupled.
Conversely, Message[T] is abstracted because it represents a common semantic across providers.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 delusion-0.3.1-py3-none-any.whl.
File metadata
- Download URL: delusion-0.3.1-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bea4d0b19979818e5f8a7aa046203d871926569bdb3893e62533af391f2ef2b6
|
|
| MD5 |
4d7fb1ce5513ced0b005491f9a675040
|
|
| BLAKE2b-256 |
b7b6b24cf2ccc60024bc89628c8686630252c794281fcbd3fba9482ffa133ca7
|