Skip to main content

A powerful, OpenAI-compatible Python SDK for TNSA NGen3 Pro and Lite Models

Project description

TNSA API Python Client

A powerful, OpenAI-compatible Python SDK for TNSA NGen3 Pro and Lite Models.

Features

  • 🚀 OpenAI-Compatible API - Familiar interface for easy migration
  • Async & Sync Support - Both synchronous and asynchronous clients
  • 🌊 Streaming Responses - Real-time token streaming for interactive applications
  • 🔧 Comprehensive Error Handling - Robust error handling with retry logic
  • 📊 Usage Tracking - Built-in token counting and cost estimation
  • 💬 Conversation Management - Automatic chat history and context management
  • 🔒 Secure Authentication - API key management with environment variable support
  • 📝 Type Safety - Full type hints for better IDE support
  • 🎯 Framework Integration - Works seamlessly with FastAPI, Django, and more

Installation

pip install tnsa-api

Quick Start

from tnsa_api_v2 import TNSA

# Initialize the client
client = TNSA(api_key="your-api-key")

# List available models
models = client.models.list()
print("Available models:", [model.id for model in models])

# Create a chat completion
response = client.chat.completions.create(
    model="NGen3.9-Pro",
    messages=[
        {"role": "user", "content": "Hello, how are you?"}
    ]
)

print(response.choices[0].message.content)

Streaming Example

# Streaming responses
stream = client.chat.completions.create(
    model="NGen3.9-Lite",
    messages=[{"role": "user", "content": "Tell me a story"}],
    stream=True
)

for chunk in stream:
    if chunk.choices[0].delta.content:
        print(chunk.choices[0].delta.content, end="")

Async Usage

import asyncio
from tnsa_api_v2 import AsyncTNSA

async def main():
    client = AsyncTNSA(api_key="your-api-key")
    
    response = await client.chat.completions.acreate(
        model="NGen3.9-Pro",
        messages=[{"role": "user", "content": "Hello!"}]
    )
    
    print(response.choices[0].message.content)

asyncio.run(main())

Configuration

The client can be configured using environment variables, configuration files, or direct parameters:

Environment Variables

export TNSA_API_KEY="your-api-key"
export TNSA_BASE_URL="https://api.tnsaai.com"
export TNSA_TIMEOUT=30.0

Configuration File (config.yaml)

api_key: "your-api-key"
base_url: "https://api.tnsaai.com"
timeout: 30.0
max_retries: 3
default_model: "NGen3.9-Pro"

Direct Parameters

client = TNSA(
    api_key="your-api-key",
    base_url="https://api.tnsaai.com",
    timeout=30.0,
    max_retries=3
)

Available Models

  • NGen3.9-Pro - High-performance model for complex tasks
  • NGen3.9-Lite - Fast, efficient model for general use
  • NGen3-7B-0625 - Specialized model variant
  • Farmvaidya-Bot - Agricultural domain-specific model

Error Handling

from tnsa_api_v2 import TNSAError, RateLimitError, AuthenticationError

try:
    response = client.chat.completions.create(
        model="NGen3.9-Pro",
        messages=[{"role": "user", "content": "Hello!"}]
    )
except AuthenticationError:
    print("Invalid API key")
except RateLimitError:
    print("Rate limit exceeded")
except TNSAError as e:
    print(f"API error: {e}")

Documentation

For detailed documentation, examples, and API reference, visit: https://docs.tnsaai.com

Support

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tnsa_api-1.0.0.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tnsa_api-1.0.0-py3-none-any.whl (3.1 kB view details)

Uploaded Python 3

File details

Details for the file tnsa_api-1.0.0.tar.gz.

File metadata

  • Download URL: tnsa_api-1.0.0.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for tnsa_api-1.0.0.tar.gz
Algorithm Hash digest
SHA256 19d4c45feef3b5ba9e25f836df682a55c9033e5b9100f4800efb7b7a1468dd49
MD5 9ac04fff63766ad499c75932415d4660
BLAKE2b-256 88232fb7bb1c9ef624d533f343b2daba30cd2dd624a40206b88ef4ce73a47e6c

See more details on using hashes here.

File details

Details for the file tnsa_api-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: tnsa_api-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 3.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for tnsa_api-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6f482e1f60424e4c60cffcb9ce8aa84ff549efb31634f3021d0374f68204fd5d
MD5 7e13146720543a137e098b15d1a17391
BLAKE2b-256 9f8f4ba39320f1f41a20a1b6fbaeadd35cfd9ed45f9c4b576f649da3e77bee32

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page