Metadata-Version: 2.4
Name: infosrv-llm-observe
Version: 0.1.3
Summary: LLM observability wrapper
Author: Your Team
Author-email: Mayoori <you@example.com>
License: 
        ### `LICENSE`  
        Put your preferred license text (MIT recommended). Example MIT header.
        
        ### `info_llm_observe/version.py`
        ```py
        __version__ = "0.1.0"
        
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28
Dynamic: license-file

# infosrv-llm-observe

Lightweight instrumentation wrapper that sends traces to Phoenix observability.

Usage:

```py
from infosrv_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..."
