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

# 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")
