Official Python SDK for SVECTOR AI Models - Advanced conversational AI and language models
Project description
SVECTOR Python SDK
Official Python SDK for accessing SVECTOR APIs.
SVECTOR develops high-performance AI models and automation solutions, specializing in artificial intelligence, mathematical computing, and computational research. This Python SDK provides programmatic access to SVECTOR's API services, offering intuitive model completions, document processing, and seamless integration with SVECTOR's advanced AI systems (e.g., Spec-3, Spec-3-Turbo, Theta-35).
The library includes type hints for request parameters and response fields, and offers both synchronous and asynchronous clients powered by httpx and requests.
Quick Start
pip install svector-sdk
from svector import SVECTOR
client = SVECTOR(api_key="your-api-key") # or set SVECTOR_API_KEY env var
# Conversational API - just provide instructions and input!
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful AI assistant that explains complex topics clearly.",
input="What is artificial intelligence?",
)
print(response.output)
Table of Contents
- Installation
- Authentication
- Core Features
- Conversations API (Recommended)
- Chat Completions API (Advanced)
- Vision API
- Streaming Responses
- File Management & Document Processing
- Models
- Error Handling
- Async Support
- Advanced Configuration
- Complete Examples
- Best Practices
- Contributing
Installation
pip
pip install svector-sdk
Development Install
git clone https://github.com/svector-corporation/svector-python
cd svector-python
pip install -e ".[dev]"
Authentication
Get your API key from the SVECTOR Dashboard and set it as an environment variable:
export SVECTOR_API_KEY="your-api-key-here"
Or pass it directly to the client:
from svector import SVECTOR
client = SVECTOR(api_key="your-api-key-here")
Core Features
- Conversations API - Simple instructions + input interface
- Advanced Chat Completions - Full control with role-based messages
- Vision API - Image analysis, OCR, object detection, and accessibility descriptions
- Real-time Streaming - Server-sent events for live responses
- File Processing - Upload and process documents (PDF, DOCX, TXT, etc.)
- Knowledge Collections - Organize files for enhanced RAG
- Type Safety - Full type hints and IntelliSense support
- Async Support - AsyncSVECTOR client for high-performance applications
- Robust Error Handling - Comprehensive error types and retry logic
- Multi-environment - Works everywhere Python runs
Conversations API (Recommended)
The Conversations API provides a, user-friendly interface. Just provide instructions and input - the SDK handles all the complex role management internally!
Basic Conversation
from svector import SVECTOR
client = SVECTOR()
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful assistant that explains things clearly.",
input="What is machine learning?",
temperature=0.7,
max_tokens=200,
)
print(response.output)
print(f"Request ID: {response.request_id}")
print(f"Token Usage: {response.usage}")
Conversation with Context
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a programming tutor that helps students learn coding.",
input="Can you show me an example?",
context=[
"How do I create a function in Python?",
"You can create a function using the def keyword followed by the function name and parameters..."
],
temperature=0.5,
)
Streaming Conversation
stream = client.conversations.create_stream(
model="spec-3-turbo",
instructions="You are a creative storyteller.",
input="Tell me a short story about robots and humans.",
stream=True,
)
print("Story: ", end="", flush=True)
for event in stream:
if not event.done:
print(event.content, end="", flush=True)
else:
print("\nStory completed!")
Document-based Conversation
# First upload a document
with open("research-paper.pdf", "rb") as f:
file_response = client.files.create(f, purpose="default")
# Then ask questions about it
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a research assistant that analyzes documents.",
input="What are the key findings in this paper?",
files=[{"type": "file", "id": file_response.file_id}],
)
Chat Completions API (Advanced)
For full control over the conversation structure, use the Chat Completions API with role-based messages:
Basic Chat
response = client.chat.create(
model="spec-3-turbo",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello, how are you?"}
],
max_tokens=150,
temperature=0.7,
)
print(response["choices"][0]["message"]["content"])
Multi-turn Conversation
conversation = [
{"role": "system", "content": "You are a helpful programming assistant."},
{"role": "user", "content": "How do I reverse a string in Python?"},
{"role": "assistant", "content": "You can reverse a string using slicing: string[::-1]"},
{"role": "user", "content": "Can you show me other methods?"}
]
response = client.chat.create(
model="spec-3-turbo",
messages=conversation,
temperature=0.5,
)
Developer Role (System-level Instructions)
response = client.chat.create(
model="spec-3-turbo",
messages=[
{"role": "developer", "content": "You are an expert code reviewer. Provide detailed feedback."},
{"role": "user", "content": "Please review this Python code: def add(a, b): return a + b"}
],
)
Vision API
SVECTOR's Vision API provides powerful image analysis capabilities including object detection, text extraction (OCR), accessibility descriptions, and more.
Basic Image Analysis
Analyze image from URL
from svector import SVECTOR
client = SVECTOR()
# Using the responses API (recommended for simple use cases)
response = client.responses.create(
model="spec-3-turbo",
input=[{
"role": "user",
"content": [
{"type": "input_text", "text": "what's in this image?"},
{
"type": "input_image",
"image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",
},
],
}],
)
print(response.output_text)
Analyze image from base64 data
import base64
from svector import SVECTOR
client = SVECTOR()
# Function to encode the image
def encode_image(image_path):
with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode("utf-8")
# Path to your image
image_path = "path_to_your_image.jpg"
# Getting the Base64 string
base64_image = encode_image(image_path)
response = client.responses.create(
model="spec-3-turbo",
input=[
{
"role": "user",
"content": [
{ "type": "input_text", "text": "what's in this image?" },
{
"type": "input_image",
"image_url": f"data:image/jpeg;base64,{base64_image}",
},
],
}
],
)
print(response.output_text)
Analyze image from file upload
from svector import SVECTOR
client = SVECTOR()
# Function to create a file with the Files API
def create_file(file_path):
with open(file_path, "rb") as file_content:
result = client.files.create(
file=file_content,
purpose="vision",
)
return result.id
# Getting the file ID
file_id = create_file("path_to_your_image.jpg")
response = client.responses.create(
model="spec-3-turbo",
input=[{
"role": "user",
"content": [
{"type": "input_text", "text": "what's in this image?"},
{
"type": "input_image",
"file_id": file_id,
},
],
}],
)
print(response.output_text)
Advanced Vision Capabilities
Using the Vision API directly
# Detailed image analysis
response = client.vision.analyze_from_url(
image_url="https://example.com/image.jpg",
prompt="Describe this image in detail, including colors, objects, and composition.",
detail="high"
)
print(response.analysis)
# Extract text from image (OCR)
response = client.vision.extract_text(
image_url="https://example.com/document.jpg"
)
print(response.analysis)
# Generate accessibility description
response = client.vision.describe_for_accessibility(
image_url="https://example.com/chart.jpg"
)
print(response.analysis)
# Detect specific objects
response = client.vision.detect_objects(
image_url="https://example.com/scene.jpg",
object_types=["people", "cars", "buildings"]
)
print(response.analysis)
# Generate social media captions
response = client.vision.generate_caption(
image_url="https://example.com/photo.jpg",
style="casual" # Options: professional, casual, funny, technical
)
print(response.analysis)
Compare multiple images
images = [
{"url": "https://example.com/image1.jpg"},
{"url": "https://example.com/image2.jpg"},
{"base64": "base64_data_here"}
]
response = client.vision.compare_images(
images=images,
prompt="Compare these images and describe their similarities and differences."
)
print(response.analysis)
Vision Response Object
All vision methods return a VisionResponse object with the following properties:
response = client.vision.analyze_from_url("https://example.com/image.jpg")
print(response.analysis) # The analysis text
print(response.output_text) # Alias for analysis (compatibility)
print(response.usage) # Token usage information
print(response.request_id) # Request ID for debugging
Vision Error Handling
from svector import SVECTOR, APIConnectionTimeoutError, RateLimitError
client = SVECTOR()
try:
response = client.vision.analyze_from_url(
image_url="https://example.com/large-image.jpg",
timeout=30, # Custom timeout in seconds
detail="low" # Use low detail for faster processing
)
print(response.analysis)
except APIConnectionTimeoutError as e:
print(f"Request timed out: {e}")
print("Try using a smaller image or setting detail='low'")
except RateLimitError as e:
print(f"Rate limit exceeded: {e}")
except Exception as e:
print(f"Vision analysis failed: {e}")
Complete Vision API Reference
Advanced Vision Features
# Confidence scoring - get confidence level with analysis
result = client.vision.analyze_with_confidence(
image_url="https://example.com/image.jpg",
prompt="Analyze this image"
)
print(f"Analysis: {result['analysis']}")
print(f"Confidence: {result['confidence']}%")
# Batch processing - analyze multiple images
images = [
{"image_url": "https://example.com/image1.jpg", "prompt": "Describe this"},
{"image_url": "https://example.com/image2.jpg", "prompt": "What's in this image?"}
]
results = client.vision.batch_analyze(images, delay=1.0)
for i, result in enumerate(results):
print(f"Image {i+1}: {result['analysis']}")
# Image comparison - compare multiple images
images = [
{"url": "https://example.com/before.jpg"},
{"url": "https://example.com/after.jpg"}
]
response = client.vision.compare_images(
images=images,
prompt="Compare these images and describe the differences"
)
print(response.analysis)
# Caption generation for social media
styles = ["casual", "professional", "funny", "technical"]
for style in styles:
response = client.vision.generate_caption(
image_url="https://example.com/photo.jpg",
style=style
)
print(f"{style.title()}: {response.analysis}")
Utility Functions
from svector import encode_image, create_data_url
# Encode local image to base64
base64_string = encode_image("path/to/your/image.jpg")
# Create data URL from base64
data_url = create_data_url(base64_string, "image/jpeg")
# Use with vision API
response = client.vision.analyze_from_base64(
base64_data=base64_string,
prompt="Analyze this local image"
)
Supported Image Formats
- PNG (.png)
- JPEG (.jpeg, .jpg)
- WEBP (.webp)
- GIF (.gif) - Non-animated only
Best Practices for Vision
- Choose the right detail level: Use
"high"for complex images requiring detailed analysis - Optimize image size: Smaller images process faster while maintaining quality
- Use specific prompts: Better prompts lead to more relevant analysis
- Handle rate limits: Add delays between batch requests
- Validate images: Ensure images meet format and content requirements
- Use timeouts: Set appropriate timeouts for large images
- Error handling: Always wrap vision calls in try-catch blocks
Complete Vision Example
import os
import base64
from svector import SVECTOR, encode_image
class VisionAnalyzer:
def __init__(self, api_key: str):
self.client = SVECTOR(api_key=api_key, timeout=60)
def analyze_image(self, image_path: str, prompt: str = None) -> str:
"""Analyze a local image file"""
try:
# Method 1: Upload file and analyze by ID
with open(image_path, 'rb') as f:
file_response = self.client.files.create(
file=f,
purpose="vision",
filename=os.path.basename(image_path)
)
result = self.client.vision.analyze_from_file_id(
file_id=file_response["file_id"],
prompt=prompt or "Provide a comprehensive analysis of this image.",
model="spec-3-turbo",
max_tokens=800,
detail="high"
)
return result.analysis
except Exception as e:
return f"Analysis failed: {e}"
def analyze_url(self, image_url: str, prompt: str = None) -> str:
"""Analyze an image from URL"""
try:
result = self.client.vision.analyze_from_url(
image_url=image_url,
prompt=prompt or "Analyze this image in detail.",
model="spec-3-turbo",
detail="high"
)
return result.analysis
except Exception as e:
return f"Analysis failed: {e}"
def extract_text(self, image_path: str) -> str:
"""Extract text from image (OCR)"""
try:
base64_image = encode_image(image_path)
result = self.client.vision.extract_text(
image_base64=base64_image,
model="spec-3-turbo"
)
return result.analysis
except Exception as e:
return f"OCR failed: {e}"
# Usage
analyzer = VisionAnalyzer(api_key="your-api-key")
# Analyze local image
analysis = analyzer.analyze_image(
"path/to/image.jpg",
"Describe the objects and colors in this image"
)
print(analysis)
# Analyze web image
analysis = analyzer.analyze_url(
"https://example.com/image.jpg",
"What emotions does this image convey?"
)
print(analysis)
# Extract text
text = analyzer.extract_text("path/to/document.jpg")
print(f"Extracted text: {text}")
Streaming Responses
Both Conversations and Chat APIs support real-time streaming:
Conversations Streaming
stream = client.conversations.create_stream(
model="spec-3-turbo",
instructions="You are a creative writer.",
input="Write a poem about technology.",
stream=True,
)
for event in stream:
if not event.done:
print(event.content, end="", flush=True)
else:
print("\nStream completed")
Chat Streaming
stream = client.chat.create_stream(
model="spec-3-turbo",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Explain quantum computing"}
],
stream=True,
)
for event in stream:
if "choices" in event and len(event["choices"]) > 0:
delta = event["choices"][0].get("delta", {})
content = delta.get("content", "")
if content:
print(content, end="", flush=True)
File Management & Document Processing
Upload and process various file formats for enhanced AI capabilities:
Upload from File
from pathlib import Path
# PDF document
with open("document.pdf", "rb") as f:
pdf_file = client.files.create(f, purpose="default")
# Text file from path
file_response = client.files.create(
Path("notes.txt"),
purpose="default"
)
print(f"File uploaded: {file_response.file_id}")
Upload from Bytes
with open("document.pdf", "rb") as f:
data = f.read()
file_response = client.files.create(
data,
purpose="default",
filename="document.pdf"
)
Upload from String Content
content = """
# Research Notes
This document contains important findings...
"""
file_response = client.files.create(
content.encode(),
purpose="default",
filename="notes.md"
)
Document Q&A
# Upload documents
with open("manual.pdf", "rb") as f:
doc1 = client.files.create(f, purpose="default")
with open("faq.docx", "rb") as f:
doc2 = client.files.create(f, purpose="default")
# Ask questions about the documents
answer = client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful assistant that answers questions based on the provided documents.",
input="What are the key features mentioned in the manual?",
files=[
{"type": "file", "id": doc1.file_id},
{"type": "file", "id": doc2.file_id}
],
)
Knowledge Collections
Organize multiple files into collections for better performance and context management:
# Add files to a knowledge collection
result1 = client.knowledge.add_file("collection-123", "file-456")
result2 = client.knowledge.add_file("collection-123", "file-789")
# Use the entire collection in conversations
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a research assistant with access to our knowledge base.",
input="Summarize all the information about our products.",
files=[{"type": "collection", "id": "collection-123"}],
)
Models
SVECTOR provides several cutting-edge foundational AI models:
Available Models
# List all available models
models = client.models.list()
print(models["models"])
SVECTOR's Foundational Models:
spec-3-turbo- Fast, efficient model for most use casesspec-3- Standard model with balanced performancetheta-35-mini- Lightweight model for simple taskstheta-35- Advanced model for complex reasoning
Model Selection Guide
# For quick responses and general tasks
quick_response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful assistant.",
input="What time is it?",
)
# For complex reasoning and analysis
complex_analysis = client.conversations.create(
model="theta-35",
instructions="You are an expert data analyst.",
input="Analyze the trends in this quarterly report.",
files=[{"type": "file", "id": "report-file-id"}],
)
# For lightweight tasks
simple_task = client.conversations.create(
model="theta-35-mini",
instructions="You help with simple questions.",
input="What is 2 + 2?",
)
Error Handling
The SDK provides comprehensive error handling with specific error types:
from svector import (
SVECTOR,
AuthenticationError,
RateLimitError,
NotFoundError,
APIError
)
client = SVECTOR()
try:
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful assistant.",
input="Hello world",
)
print(response.output)
except AuthenticationError as e:
print(f"Invalid API key: {e}")
print("Get your API key from https://www.svector.co.in")
except RateLimitError as e:
print(f"Rate limit exceeded: {e}")
print("Please wait before making another request")
except NotFoundError as e:
print(f"Resource not found: {e}")
except APIError as e:
print(f"API error: {e} (Status: {e.status_code})")
print(f"Request ID: {getattr(e, 'request_id', 'N/A')}")
except Exception as e:
print(f"Unexpected error: {e}")
Available Error Types
AuthenticationError- Invalid API key or authentication issuesPermissionDeniedError- Insufficient permissions for the resourceNotFoundError- Requested resource not foundRateLimitError- API rate limit exceededUnprocessableEntityError- Invalid request data or parametersInternalServerError- Server-side errorsAPIConnectionError- Network connection issuesAPIConnectionTimeoutError- Request timeout
Async Support
The SDK provides full async support with AsyncSVECTOR:
Async Basic Usage
import asyncio
from svector import AsyncSVECTOR
async def main():
async with AsyncSVECTOR() as client:
response = await client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful assistant.",
input="Explain quantum computing in simple terms.",
)
print(response.output)
asyncio.run(main())
Async Streaming
async def streaming_example():
async with AsyncSVECTOR() as client:
stream = await client.conversations.create_stream(
model="spec-3-turbo",
instructions="You are a creative storyteller.",
input="Write a poem about technology.",
stream=True,
)
async for event in stream:
if not event.done:
print(event.content, end="", flush=True)
print()
asyncio.run(streaming_example())
Async Concurrent Requests
async def concurrent_example():
async with AsyncSVECTOR() as client:
# Multiple async conversations
tasks = [
client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful assistant.",
input=f"What is {topic}?"
)
for topic in ["artificial intelligence", "quantum computing", "blockchain"]
]
responses = await asyncio.gather(*tasks, return_exceptions=True)
topics = ["artificial intelligence", "quantum computing", "blockchain"]
for topic, response in zip(topics, responses):
if isinstance(response, Exception):
print(f"{topic}: Error - {response}")
else:
print(f"{topic}: {response.output[:100]}...")
asyncio.run(concurrent_example())
Advanced Configuration
Client Configuration
from svector import SVECTOR
client = SVECTOR(
api_key="your-api-key",
base_url="https://api.svector.co.in", # Custom API endpoint
timeout=30, # Request timeout in seconds
max_retries=3, # Retry failed requests
verify_ssl=True, # SSL verification
http_client=None, # Custom HTTP client
)
Async Configuration
from svector import AsyncSVECTOR
client = AsyncSVECTOR(
api_key="your-api-key",
timeout=30,
max_retries=3,
)
Per-request Options
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful assistant.",
input="Hello",
timeout=60, # Override timeout for this request
headers={ # Additional headers
"X-Custom-Header": "value",
"X-Request-Source": "my-app"
}
)
Raw Response Access
# Get both response data and raw HTTP response
response, raw = client.conversations.create_with_response(
model="spec-3-turbo",
instructions="You are a helpful assistant.",
input="Hello",
)
print(f"Status: {raw.status_code}")
print(f"Headers: {raw.headers}")
print(f"Response: {response.output}")
print(f"Request ID: {response.request_id}")
Complete Examples
Intelligent Chat Application
from svector import SVECTOR
class IntelligentChat:
def __init__(self, api_key: str):
self.client = SVECTOR(api_key=api_key)
self.conversation_history = []
def chat(self, user_message: str, system_instructions: str = None) -> str:
# Add user message to history
self.conversation_history.append(user_message)
response = self.client.conversations.create(
model="spec-3-turbo",
instructions=system_instructions or "You are a helpful and friendly AI assistant.",
input=user_message,
context=self.conversation_history[-10:], # Keep last 10 messages
temperature=0.7,
)
# Add AI response to history
self.conversation_history.append(response.output)
return response.output
def stream_chat(self, user_message: str):
print("Assistant: ", end="", flush=True)
stream = self.client.conversations.create_stream(
model="spec-3-turbo",
instructions="You are a helpful AI assistant. Be conversational and engaging.",
input=user_message,
context=self.conversation_history[-6:],
stream=True,
)
full_response = ""
for event in stream:
if not event.done:
print(event.content, end="", flush=True)
full_response += event.content
print()
self.conversation_history.append(user_message)
self.conversation_history.append(full_response)
def clear_history(self):
self.conversation_history = []
# Usage
import os
chat = IntelligentChat(os.environ.get("SVECTOR_API_KEY"))
# Regular chat
print(chat.chat("Hello! How are you today?"))
# Streaming chat
chat.stream_chat("Tell me an interesting fact about space.")
# Specialized chat
print(chat.chat(
"Explain quantum computing",
"You are a physics professor who explains complex topics in simple terms."
))
Document Analysis System
from svector import SVECTOR
from pathlib import Path
class DocumentAnalyzer:
def __init__(self):
self.client = SVECTOR()
self.uploaded_files = []
def add_document(self, file_path: str) -> str:
try:
with open(file_path, "rb") as f:
file_response = self.client.files.create(
f,
purpose="default",
filename=Path(file_path).name
)
self.uploaded_files.append(file_response.file_id)
print(f"Uploaded: {file_path} (ID: {file_response.file_id})")
return file_response.file_id
except Exception as error:
print(f"Failed to upload {file_path}: {error}")
raise error
def add_document_from_text(self, content: str, filename: str) -> str:
file_response = self.client.files.create(
content.encode(),
purpose="default",
filename=filename
)
self.uploaded_files.append(file_response.file_id)
return file_response.file_id
def analyze(self, query: str, analysis_type: str = "insights") -> str:
instructions = {
"summary": "You are an expert document summarizer. Provide clear, concise summaries.",
"questions": "You are an expert analyst. Answer questions based on the provided documents with citations.",
"insights": "You are a research analyst. Extract key insights, patterns, and important findings."
}
response = self.client.conversations.create(
model="spec-3-turbo",
instructions=instructions[analysis_type],
input=query,
files=[{"type": "file", "id": file_id} for file_id in self.uploaded_files],
temperature=0.3, # Lower temperature for more factual responses
)
return response.output
def compare_documents(self, query: str) -> str:
if len(self.uploaded_files) < 2:
raise ValueError("Need at least 2 documents to compare")
return self.analyze(
f"Compare and contrast the documents regarding: {query}",
"insights"
)
def get_uploaded_file_ids(self):
return self.uploaded_files.copy()
# Usage
analyzer = DocumentAnalyzer()
# Add multiple documents
analyzer.add_document("./reports/quarterly-report.pdf")
analyzer.add_document("./reports/annual-summary.docx")
analyzer.add_document_from_text("""
# Meeting Notes
Key decisions:
1. Increase R&D budget by 15%
2. Launch new product line in Q3
3. Expand team by 5 engineers
""", "meeting-notes.md")
# Analyze documents
summary = analyzer.analyze(
"Provide a comprehensive summary of all documents",
"summary"
)
print("Summary:", summary)
insights = analyzer.analyze(
"What are the key business decisions and their potential impact?",
"insights"
)
print("Insights:", insights)
# Compare documents
comparison = analyzer.compare_documents(
"financial performance and future projections"
)
print("Comparison:", comparison)
Multi-Model Comparison
from svector import SVECTOR
import time
class ModelComparison:
def __init__(self):
self.client = SVECTOR()
def compare_models(self, prompt: str):
models = ["spec-3-turbo", "spec-3", "theta-35", "theta-35-mini"]
print(f"Comparing models for prompt: \"{prompt}\"\n")
results = []
for model in models:
try:
start_time = time.time()
response = self.client.conversations.create(
model=model,
instructions="You are a helpful assistant. Be concise but informative.",
input=prompt,
max_tokens=150,
)
duration = time.time() - start_time
results.append({
"model": model,
"response": response.output,
"duration": duration,
"usage": response.usage,
"success": True
})
except Exception as e:
results.append({
"model": model,
"error": str(e),
"success": False
})
# Display results
for result in results:
if result["success"]:
print(f"Model: {result['model']}")
print(f"Duration: {result['duration']:.2f}s")
print(f"Tokens: {result['usage'].get('total_tokens', 'N/A')}")
print(f"Response: {result['response'][:200]}...")
print("─" * 80)
else:
print(f"{result['model']} failed: {result['error']}")
# Usage
comparison = ModelComparison()
comparison.compare_models("Explain the concept of artificial general intelligence")
Best Practices
1. Use Conversations API for Simplicity
# Recommended: Clean and simple
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a helpful assistant.",
input=user_message,
)
# More complex: Manual role management
response = client.chat.create(
model="spec-3-turbo",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": user_message}
],
)
2. Handle Errors Gracefully
import time
def chat_with_retry(client, prompt, max_retries=3):
for attempt in range(max_retries):
try:
return client.conversations.create(
model="spec-3-turbo",
instructions="You are helpful.",
input=prompt
)
except RateLimitError:
if attempt < max_retries - 1:
wait_time = 2 ** attempt # Exponential backoff
time.sleep(wait_time)
else:
raise
3. Use Appropriate Models
# For quick responses
model = "spec-3-turbo"
# For complex reasoning
model = "theta-35"
# For simple tasks
model = "theta-35-mini"
4. Optimize File Usage
# Upload once, use multiple times
with open("document.pdf", "rb") as f:
file_response = client.files.create(f, purpose="default")
file_id = file_response.file_id
# Use in multiple conversations
for question in questions:
response = client.conversations.create(
model="spec-3-turbo",
instructions="You are a document analyst.",
input=question,
files=[{"type": "file", "id": file_id}],
)
5. Environment Variables
import os
from svector import SVECTOR
# Use environment variables
client = SVECTOR(api_key=os.environ.get("SVECTOR_API_KEY"))
# Don't hardcode API keys
client = SVECTOR(api_key="sk-hardcoded-key-here") # Never do this!
6. Use Context Managers for Async
# Recommended: Use context manager
async with AsyncSVECTOR() as client:
response = await client.conversations.create(...)
# Manual cleanup required
client = AsyncSVECTOR()
try:
response = await client.conversations.create(...)
finally:
await client.close()
Testing
Run tests with pytest:
# Install test dependencies
pip install -e ".[test]"
# Run tests
pytest
# Run with coverage
pytest --cov=svector
Contributing
We welcome contributions! Please see our Contributing Guide for details.
- Fork the repository
- Create a feature branch
- Install development dependencies:
pip install -e ".[dev]" - Make your changes
- Add tests and documentation
- Run tests and linting
- Submit a pull request
License
Apache License - see LICENSE file for details.
Links & Support
- Website: https://www.svector.co.in
- Documentation: https://platform.svector.co.in
- Issues: GitHub Issues
- Support: support@svector.co.in
- PyPI Package: svector-sdk
Built with ❤️ by SVECTOR Corporation - Pushing the boundaries of AI, Mathematics, and Computational research
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file svector_sdk-1.7.6.tar.gz.
File metadata
- Download URL: svector_sdk-1.7.6.tar.gz
- Upload date:
- Size: 51.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03d49344a0c0f9476b15a9ab12d958b7b0de29847f4fb031576a2b135c991179
|
|
| MD5 |
7175ca7e3088e76dcdd8c4c5352fa778
|
|
| BLAKE2b-256 |
54f42f92f4a1e70a1ddb325093012389e514d364476e15f748396f2887e8e301
|
File details
Details for the file svector_sdk-1.7.6-py3-none-any.whl.
File metadata
- Download URL: svector_sdk-1.7.6-py3-none-any.whl
- Upload date:
- Size: 39.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d65f746695ef9cf9b5a8fef78eaa93cd0730a14a8a3c61fc150e020960d5717
|
|
| MD5 |
faae93b59d290695e2c689bc9986110b
|
|
| BLAKE2b-256 |
dc216d89d53c5fbc014ac9b5fb2ab58323705495e21d0345de9a9d1143adc534
|