ooai_llm

Public package API for ooai_llm.

Purpose:

Expose a small, ergonomic public surface centered on chat-model creation, model discovery, and model inspection.

Design:
  • Keep the top-level API intentionally small.

  • Preserve older names through deprecated lazy aliases to avoid sudden breakage for early adopters.

  • Re-export the core settings and typed model-string helpers that users are most likely to configure directly.

Public names:

__all__: Curated public API.

Examples

>>> from ooai_llm import AppSettings, create_llm, get_model_info
>>> settings = AppSettings()
>>> callable(create_llm) and callable(get_model_info)
True

Submodules

Attributes

Package Contents

ooai_llm.list_models[source]