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.2.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.2-py3-none-any.whl (50.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tnsa_api-2.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 1e5cc29226a4419cf9436c3cc28d1f7a12a11c582ba1e89bdc4e3d0299306940
MD5 9708dbadf8c8bd77f07c2c3d1b757631
BLAKE2b-256 765976cafd2e11ad1892a00c484e66b7b97cc6c90a55e2a14b3ff3bc2df500f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tnsa_api-2.1.2-py3-none-any.whl
  • Upload date:
  • Size: 50.7 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1bfa5a5c38df5991da1a63029d5e4a236a6bd0b035c134e14d28061ab7bde3b1
MD5 3ad6f61e91726442710c43f2a785f2ba
BLAKE2b-256 0c7d095be0ac22c6c88ef9a9399ceda5be16e7d5d632bb2b2918827a55ca2ab1

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