Manage your API keys for programmatic access to Tesslate models
Your API keys work with any OpenAI-compatible client. Use them to:
WEBGEN-SMALL and UIGEN-FX-SMALL modelsQuick Start:
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://apin.tesslate.com/v1"
)
response = client.chat.completions.create(
model="WEBGEN-SMALL",
messages=[{"role": "user", "content": "Create a login form"}]
)Loading API keys...