Metadata-Version: 2.4
Name: wren-gateway
Version: 1.0.2
Summary: Wren AI Security Gateway SDK
Author: Kushagra Shukla
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: rich
Requires-Dist: python-dotenv

# Wren Gateway SDK

Python SDK for Wren AI Security Gateway.

## Installation

pip install wren-gateway

## Usage

from wren_gateway import WrenClient

client = WrenClient(
    base_url="http://localhost:8000",
    api_key="your-key"
)

client.simple_chat("hello")
