Curl Example for Chat Streaming

curl -X POST "https://api.theaimart.com/chatcompletions" \
-H "Content-Type: application/json" \
-H "X-API-Key: your_api_key_here" \
-d '{
    "model": "meta-llama/Llama-3-8b-chat-hf",
    "messages": [
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Hello, how are you?"}
    ],
    "max_tokens": 50,
    "temperature": 0.7,
    "top_p": 0.9
}'

Python Example for Chat Streaming

import requests

url = "https://api.theaimart.com/chatcompletions"
headers = {
    "Content-Type": "application/json",
    "X-API-Key": "your-theaimart-api-key" 
}
data = {
    "model": "anthropic/claude-3-7-sonnet-latest",
    "messages": [
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Hello, how are you?"}
    ],
    "stream": True,  
    "max_tokens": 20,
    "temperature": 0.7,
    "top_p": 0.9
}
try:
    response = requests.post(url, headers=headers, json=data, stream=True)
    if response.status_code == 200:
        for chunk in response.iter_lines(decode_unicode=True):
            if chunk:  
                try:
                    chunk_data = eval(chunk)  
                    for item in chunk_data:
                        if "content" in item:
                            print(item["content"], end="")
                except Exception as e:
                    print(f"Error parsing chunk: {e}")
    else:
        print(f"Request failed: {response.status_code} - {response.text}")
except requests.exceptions.RequestException as e:
    print(f"An error occurred: {e}")