Skip to main content

A lightweight library integrating LLM natively into Python

Project description

OpenHosta Logo

OpenHosta

The semantic layer for Python.
Write what you mean. Python does the rest.

PyPI Version Python Versions License CI Status


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_variants 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openhosta-4.3.1.tar.gz (90.5 kB view details)

Uploaded Source

Built Distribution

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

openhosta-4.3.1-py3-none-any.whl (111.4 kB view details)

Uploaded Python 3

File details

Details for the file openhosta-4.3.1.tar.gz.

File metadata

  • Download URL: openhosta-4.3.1.tar.gz
  • Upload date:
  • Size: 90.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for openhosta-4.3.1.tar.gz
Algorithm Hash digest
SHA256 5836e55dc0ba4783bded838de536522c823474733408a638f0f947b4f49d510d
MD5 2b221a41c8b9ef31eab8210796baaae9
BLAKE2b-256 9b6f5b305f82abaa6d86afc7c949c72494a0df61f7c784f22874c0831e39f6f4

See more details on using hashes here.

File details

Details for the file openhosta-4.3.1-py3-none-any.whl.

File metadata

  • Download URL: openhosta-4.3.1-py3-none-any.whl
  • Upload date:
  • Size: 111.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for openhosta-4.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d018410d944ffd94ced6b3590bf46af8a5893697fef9b80a8e5122f7559e09b7
MD5 5035cd995c90560c840ee700abe37ce5
BLAKE2b-256 36b540b7bdf427691bb04558d80105b124d4e0be9f76794575088206ac2d89af

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