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-2.1.1.tar.gz (41.5 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-2.1.1-py3-none-any.whl (50.6 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for tnsa_api-2.1.1.tar.gz
Algorithm Hash digest
SHA256 b76c8c1109f140fa5f1d009cb811bd1cfcdf6567e0e55e07fa816ca6da7263fb
MD5 9287b090d4b60dbbb420bb4431ff5074
BLAKE2b-256 fabbb28918b96d0563cd84e3da9e69339298cbd9375aec137e9f9eed73d223a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tnsa_api-2.1.1-py3-none-any.whl
  • Upload date:
  • Size: 50.6 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-2.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 aaa9e0d42ff40b6b0a77c264381d99160348bd26f629787d6280034c15c163d3
MD5 2fa1b5bfdb6890065964ee5ddb1bd519
BLAKE2b-256 3ba8ce781fb6c3724d9b74541f9d6a3f6ad3eacd541dc6ce89882e37b4216d0e

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