Metadata-Version: 2.3
Name: vysp-python
Version: 0.2.3
Summary: Python Client Library for VYSP.AI
Project-URL: Homepage, https://vysp.ai
Project-URL: Documentation, https://docs.vysp.ai
Project-URL: Issues, https://vysp.ai/support
Author-email: VSY Design LLC <vijeet@vsy.one>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: requests
Description-Content-Type: text/markdown

# VYSP Client Library

## Installation
First, install the library using pip:

```
pip install vysp-python
```

## Usage Example

```
from vysp import VYSPClient

# Initialize the client
client = VYSPClient(tenant_api_key='your_tenant_key', gate_api_key='your_gate_key')

prompt = 'What is VYSP.AI?'

# Perform an input check
input_response = client.check_input(client_ref_user_id='123', prompt=prompt)
print(response)

model_output = 'VYSP.AI is a product that allows you to configure AI guardrails easier.'

# Perform an output check
output_response = client.check_output(client_ref_user_id='123', prompt=prompt, model_output=model_output)
print(response)
```