A lightweight library integrating LLM natively into Python
Project description
OpenHosta
The semantic layer for Python.
Write what you mean. Python does the rest.
OpenHosta integrates Large Language Models directly into Python as native functions. Define a function with type hints and a docstring — OpenHosta uses AI to implement it. No DSL, no wrappers, just Python.
from OpenHosta import emulate
def translate(text: str, language: str) -> str:
"""Translates the text into the specified language."""
return emulate()
print(translate("Hello World!", "French"))
# 'Bonjour le monde !'
OpenHosta also enables semantic testing — evaluate conditions that require cultural knowledge or fuzzy logic, something traditional assert statements can never do:
from OpenHosta import test
sentence = "You are an nice person."
if test(f"this contains an insult: {sentence}"):
print("The sentence is considered an insult.")
else:
print("The sentence is not considered an insult.")
# The sentence is not considered an insult.
Why OpenHosta?
- Zero DSL — Pure Python syntax. Your functions stay readable, testable, and IDE-friendly.
- Type-safe — Guarded types validate LLM output against your annotations (
int,dict,Enum,Pydantic,Callable…). - Model-agnostic — Works with OpenAI, Ollama, Azure, vLLM — any OpenAI-compatible endpoint.
- Runs offline — Full local execution with Ollama. Your data stays private.
- Production-ready — Uncertainty tracking, cost tracking, audit mode, and async support built-in.
Installation
pip install OpenHosta
We recommend using a virtual environment (
python -m venv .venv). See the full installation guide for local model setup, optional dependencies, and troubleshooting.
Quick Start
Option A: Local Execution (Ollama)
Ensure you have Ollama installed and run ollama run qwen3.5:4b in your terminal.
from OpenHosta import emulate, OpenAICompatibleModel, config
# 1. Point OpenHosta to your local Ollama instance
local_model = OpenAICompatibleModel(
model_name="qwen3.5:4b",
base_url="http://localhost:11434/v1",
api_key="none" # Ollama does not require a key
)
config.DefaultModel = local_model
# 2. Define and call your function
def translate(text: str, language: str) -> str:
"""Translates the text into the specified language."""
return emulate()
print(translate("Hello World!", "French"))
# 'Bonjour le monde !'
Option B: Remote API (OpenAI)
Create a .env file in your project directory:
OPENHOSTA_DEFAULT_MODEL_NAME="gpt-4.1"
OPENHOSTA_DEFAULT_MODEL_API_KEY="your-api-key-here"
from OpenHosta import emulate
def translate(text: str, language: str) -> str:
"""Translates the text into the specified language."""
return emulate()
print(translate("Hello World!", "French"))
# 'Bonjour le monde !'
What Can You Do?
| Feature | Description |
|---|---|
emulate |
AI-implemented functions from docstrings |
emulate_async |
Non-blocking async variant for concurrency |
emulate_iterator |
Streaming results via lazy generators |
closure |
Semantic lambda functions |
test |
Fuzzy logic / semantic boolean tests |
| Types & Pydantic | int, dict, Enum, dataclass, Pydantic, Callable… |
| Safe Context | Uncertainty tracking & error handling |
| Image input | Pass PIL.Image directly to functions |
📖 Full Documentation · 📝 Changelog · 🧪 Examples
Contributing
We warmly welcome contributions! Please refer to our Contribution Guide and Code of Conduct.
Browse existing issues to find contribution ideas.
License
MIT License — see LICENSE for details.
Authors
- Emmanuel Batt — Manager and Coordinator, Founder of Hand-e
- William Jolivet — DevOps, SysAdmin
- Léandre Ramos — AI Developer
- Merlin Devillard — UX Designer, Product Owner
GitHub: https://github.com/hand-e-fr/OpenHosta
The future of development is human. — The OpenHosta Team
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
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 openhosta-4.2.2.tar.gz.
File metadata
- Download URL: openhosta-4.2.2.tar.gz
- Upload date:
- Size: 85.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c9364eab00ac9194233a615f5330a96f657f07c2ab14afe76a7aa499de8402e
|
|
| MD5 |
e9dd3dbdba5ae0261055e6a2a129c8e9
|
|
| BLAKE2b-256 |
21e046512c3fc72b6f5f41baddf01e4e6279c932d639034fa7c65a0d06544794
|
File details
Details for the file openhosta-4.2.2-py3-none-any.whl.
File metadata
- Download URL: openhosta-4.2.2-py3-none-any.whl
- Upload date:
- Size: 105.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e515bdad1db78c0332183b698c408d6c6eddeba83ad40ec3fcd5ad2ccf12c525
|
|
| MD5 |
451f61ffcb70dd23fe31d2600f655864
|
|
| BLAKE2b-256 |
efdc075632a9530c9389e5248929449154fb49c81e1a9de7ba681196ee7de531
|