Metadata-Version: 2.4
Name: info-llm-observe
Version: 0.1.0
Summary: Lightweight instrumentation wrapper for Phoenix observability (LLM helper).
Author: Your Team
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28
Dynamic: license-file

# info-llm-observe

Lightweight instrumentation wrapper that sends traces to Phoenix observability.

Usage:

```py
from info_llm_observe import register, instrument

# optional: register explicitly (will also read PHOENIX_BASE_URL env var)
register(base_url="http://phoenix-host")

@instrument(project_id="UHJvamVjdDo1", user_id="alice", session_id="s1")
def call_llm(prompt: str):
    # call your model...
    return "response"
