Metadata-Version: 2.1
Name: prenzl
Version: 0.1.2
Summary: Agent and advanced RAG observability tool in python
Home-page: https://github.com/OptimaLLM/python-sdk
Author: OptimaLLM
Author-email: charlotte.cronjaeger@googlemail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Prenzl AI agent observbility tool for agents and advanced RAG
This is the python sdk of Prenzl AI - an agent and advanced RAG observability tool.

### Installation
```
pip install prenzl
```

### Using Prenzl AI Observability
```
from prenzl import prenzl_observe

api_key = "YOUR_API_KEY"

# To work on local host
base_url = "http://localhost:3000/api"

# Initialize the observer
prenzl = Prenzl(api_key,base_url)

# Write observed data into DB
data = ""
result = prenzl.prenzl_observe(data)
```

The PyPI website for Prenzl AI can be found here: https://pypi.org/project/prenzl/
