SillyTavern Setup: Access Stheno v3.2 & MythoMax APIs via APIVALE

📌 KEY TAKEAWAYSQuick Technical Reference
Universal Gateway
baseURL: "https://api.apivale.com/v1"
Supported Ecosystems
Cursor, Claude Code, Cline, Windsurf
Global Billing Rail
Waffo Global Billing (Zero KYC)
Sandbox Quota
$0.20 Developer Credit (No Card Required)
⚡ Quick Setup Generator
CLI & IDE One-Click Configurator

Select your coding tool and target model to generate instant, zero-login proxy configuration commands.

BASH
# Export APIVALE proxy base URL and API key
export ANTHROPIC_BASE_URL="https://api.apivale.com/v1"
export ANTHROPIC_API_KEY="sk-apivale-your-api-key"

# Launch Claude Code CLI with target model
claude --model infer/glm-5.3-flash

Mainstream large language models (like GPT-4o or Claude 3.5 Sonnet) are subject to strict, generalized safety alignment policies. These restrictions frequently trigger false positives, leading to frustrating refusals during creative writing, fantasy roleplay, interactive gaming, or immersive storytelling. While local hosting of open-source models offers a bypass, running 8B or 13B models requires expensive consumer GPUs and drains battery life rapidly on mobile devices.

For writers, creators, and game developers seeking unrestricted, highly expressive roleplay without hardware limitations, connecting SillyTavern to high-performance open-source models via a cloud gateway is the ideal solution.

In this guide, we show you how to configure SillyTavern to utilize Stheno v3.2 and MythoMax L2 13B via the APIVALE global proxy gateway—bypassing geographical restrictions, identity verification, and hardware bottlenecks.

Quick Start: Call Stheno v3.2 with cURL

Validate your APIVALE connection by running this simple cURL command in your terminal to request a response from the Stheno v3.2 model:

curl https://api.apivale.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your_apivale_key_here" \
  -d '{
    "model": "sao10k/l3-stheno-8b",
    "messages": [
      {"role": "system", "content": "You are a fantasy merchant selling mysterious potions."},
      {"role": "user", "content": "Greetings, what do you have in stock?"}
    ],
    "temperature": 0.9
  }'

Roleplay Models: APIVALE Gateway vs. Aligned Baselines

When developing creative interfaces or configuring personal roleplay backends, choosing the right model balance between context length, pricing, and alignment is critical:

Model Identifier Context Window Price (per 1M Input Tokens) Price (per 1M Output Tokens) Censorship & Alignment Primary Roleplay Strength
sao10k/l3-stheno-8b 8,192 $0.15 $0.15 Uncensored (No Refusals) High formatting speed, rich character voice
gryphe/mythomax-l2-13b 4,096 $0.20 $0.20 Uncensored (No Refusals) Classic fantasy writing style, logical narrative
openai/gpt-4o 128,000 $2.50 $10.00 Highly Censored Coding, analytical logic, dry writing style

Definition

SillyTavern API Bridge

A SillyTavern API Bridge is a configuration architecture that intercepts chat interface requests from the SillyTavern frontend and relays them to an OpenAI-compatible proxy gateway (such as api.apivale.com/v1) using unified developer keys to access specialized, uncensored open-source models.


Step-by-Step SillyTavern UI Configuration

Follow these steps to connect your local or mobile SillyTavern installation to APIVALE:

  1. Access API Settings: Launch SillyTavern on your desktop or mobile device. Click the Plug Icon (API Connections) in the top-right navigation bar.
  2. Select API Type: In the “API” dropdown menu, select OpenAI. (Note: Do not select KoboldAI or Horde; APIVALE exposes these models through a standard OpenAI-compatible API endpoint).
  3. Configure the Endpoint URL: Uncheck the “Use Reverse Proxy” box if it is checked. In the API URL input box, paste the APIVALE gateway endpoint:
    https://api.apivale.com/v1
  4. Input the Authentication Token: Paste your unique APIVALE API key (available in your APIVALE dashboard) into the API Key input box.
  5. Establish Connection: Click the Connect button. SillyTavern will send a handshake request. Once successful, the status indicator will turn green, and the Model dropdown list will populate.
  6. Choose Your Model: Under the Model dropdown, select either sao10k/l3-stheno-8b (recommended for fast, descriptive mobile chat) or gryphe/mythomax-l2-13b (recommended for long-form narrative consistency).

[!TIP] Optimize Mobile Latency: If you are using SillyTavern Mobile (via Termux or a hosted server), check the Streaming checkbox in the API settings. Streaming sends tokens to your screen as they are generated, reducing the Time-to-First-Token (TTFT) to less than 150ms.


Programmatic Integration: Python and TypeScript SDKs

For developers building custom frontends or automating interactive NPCs, here is how to call these roleplay models using standard SDKs.

Python SDK Integration

Install the official package:

pip install openai

Implement the client with robust exception handling:

import os
from openai import OpenAI, AuthenticationError, RateLimitError, APIError

# Initialize client pointing to APIVALE proxy
client = OpenAI(
    api_key="your_apivale_key_here",
    base_url="https://api.apivale.com/v1"
)

try:
    response = client.chat.completions.create(
        model="sao10k/l3-stheno-8b",
        messages=[
            {"role": "system", "content": "You are a tavern keeper in a medieval fantasy game. Speak cryptically."},
            {"role": "user", "content": "Tell me a rumor about the nearby ruins."}
        ],
        temperature=0.85,
        max_tokens=150
    )
    print("Character Response:\n", response.choices[0].message.content)

except AuthenticationError:
    print("[Error 401] Invalid or expired APIVALE API key. Please check your credentials.")
except RateLimitError:
    print("[Error 429] Rate limit reached. APIVALE gateway will automatically queue requests shortly.")
except APIError as e:
    print(f"[API Error] Gateway returned status {e.status_code}: {e.message}")
except Exception as e:
    print(f"[Unexpected Error] {str(e)}")

TypeScript / Node.js Integration

Install the npm package:

npm install openai

Implement the TypeScript call:

import OpenAI from 'openai';

// Initialize the SDK pointing to the APIVALE gateway
const openai = new OpenAI({
  apiKey: 'your_apivale_key_here',
  baseURL: 'https://api.apivale.com/v1',
});

async function runRoleplayPrompt() {
  try {
    const completion = await openai.chat.completions.create({
      model: 'gryphe/mythomax-l2-13b',
      messages: [
        { role: 'system', content: 'You are a futuristic AI guide lost in a digital labyrinth.' },
        { role: 'user', content: 'Help me find the exit node.' }
      ],
      temperature: 0.9,
      max_tokens: 200,
    });

    console.log('AI Guide:', completion.choices[0]?.message?.content);
  } catch (error: any) {
    if (error instanceof OpenAI.APIError) {
      console.error(`[API Error ${error.status}]: ${error.message}`);
    } else {
      console.error('[System Error]:', error.message);
    }
  }
}

runRoleplayPrompt();

🎭 Unlock Immersive Uncensored Roleplay on APIVALE

Say goodbye to rigid model safety rules and expensive GPU setups. Use APIVALE to route SillyTavern, custom chatbots, or gaming backend servers through our high-performance global network. Access Stheno v3.2, MythoMax, and other top-tier creative models starting at just $0.15 per million tokens. Register today and get free initial credits to start your adventure.


Developer FAQ

Q: How do I resolve the “API Connection Refused” error in SillyTavern?
A: First, verify that the API URL is set exactly to https://api.apivale.com/v1 and does not contain trailing slashes or sub-paths. Second, ensure that your APIVALE API key is valid and has sufficient credit balance.

Q: Which model is best for descriptive, high-speed mobile roleplay?
A: sao10k/l3-stheno-8b is highly recommended for mobile deployment. Built on Llama 3 8B, it offers exceptionally low latency (TTFT < 150ms) while producing highly expressive, immersive character dialogues.

Q: Will my prompts remain private when using the APIVALE proxy?
A: Yes. APIVALE does not store prompt contents, completions, or user logs on its proxy servers. Requests are securely encrypted via HTTPS in transit and sent directly to our underlying compute nodes.

Q: Does APIVALE support prompt caching for long chat sessions?
A: Yes. Since SillyTavern resubmits the entire history with every prompt, token counts grow. APIVALE automatically detects and caches unchanged chat history segments, applying a 90% discount on cache hits.

🎁 OFFICIAL WALLET BENEFITS
⚡ Slash Coding Agent Token Costs by 80% with APIVALE

Enjoy instant PayPal checkout, global credit cards, Apple Pay, and Alipay with 0 extra foreign exchange fees. Claim your free $0.20 signup credit, plus an automatic +50% bonus on your first top-up!

🎁+50% First Deposit Bonus ($5 → $7.50, $29 → $43.50)
🚀$29 Developer Pack (56% OFF, 40M Tokens, Never Expires)
$0.20 Free Signup Trial (Zero Card Required)
💳PayPal Instant Checkout (Global Zero-FX Cards & Alipay)
Zero KYC. No contract lock-in. Credits never expire.
Kenji Tanaka
About Kenji Tanaka

Kenji Tanaka is an AI Developer Relations Engineer specializing in multimodal API integrations, local LLM orchestration, and front-end interface customization.