Metadata-Version: 2.4
Name: torq-client-sdk
Version: 0.0.1
Summary: Python SDK for Torq distributed GPU job queue (coming soon)
Project-URL: Homepage, https://torq.muid.io
Project-URL: Documentation, https://torq.muid.io/docs
Project-URL: Repository, https://github.com/muid-io/torq
Author-email: "MUID.io" <dev@muid.io>
License: MIT
Keywords: client,distributed,gpu,inference,llm,sdk,torq
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Torq Client SDK

Python SDK for submitting jobs to Torq distributed GPU queue.

**Status: Coming Soon**

## Overview
Simple SDK to submit LLM inference jobs to Torq and retrieve results.

## Features (planned)
- Async/sync job submission
- Batch job support
- Priority queuing
- Result polling and callbacks
- Automatic retries

## Quick Start
```python
from torq_client import TorqClient

client = TorqClient("https://torq.muid.io")
job = client.submit(model="llama3", prompt="Hello!")
result = job.wait()
```

## Installation
```bash
pip install torq-client-sdk
```

## Links
- Main site: https://torq.muid.io
- Documentation: https://torq.muid.io/docs
