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


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.2.0.tar.gz (85.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.2.0-py3-none-any.whl (105.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: openhosta-4.2.0.tar.gz
  • Upload date:
  • Size: 85.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.2.0.tar.gz
Algorithm Hash digest
SHA256 636bf8233d8dcb56475e494e3b89155881f93cfdb61e20c330f19fb3f1ffd63f
MD5 7c50598e5306fe0f077e9e153e9e131a
BLAKE2b-256 34f13dbb9683383014f277c08673bb8d948dd7b661b5315cf17febdc39bb7a8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: openhosta-4.2.0-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

Hashes for openhosta-4.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b1cf34d00898fc523c12e59e25b39c4affbfda74c0587f2ff2da2d83375a83fe
MD5 9d17f93044e8cc1cec38f7207c2a931e
BLAKE2b-256 84adb58009035d28bb5adb36b19015fee5c2bb692dc8a2920179448f133b1878

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