typesafe/jev-1.13
Jev 1.13 is TypeSafe's System One model for structured decisions from state and typed questions.
Input⌘ / Ctrl + Enter
Try a prompt
OutputReady
Your response will appear here
Choose an example or write a prompt, then click Run.
API details and access
Model Details
ProviderTypeSafe
TypeLlm
Model IDtypesafe/jev-1.13
Capabilities
InputText
OutputText
Context-
Max Output-
VisionNot supported
Function CallingNot supported
Access details
Chat CompletionsBase URLhttps://api.sandbase.ai
API Endpoint/v1/chat/completions
{
"model": "typesafe/jev-1.13",
"messages": [
{
"role": "user",
"content": "Hello"
}
],
"max_tokens": 512
}Pricing
Input$0.04 / 1M tokens
Output$0.0000 / 1M tokens
Production endpoint
Send your first request
OpenAI-compatible endpoint with unified authentication and usage tracking.
POST
https://api.sandbase.ai/v1/chat/completionsModel ID
typesafe/jev-1.1301
Input Schema
2 parameters · 2 required · 0 optional
| Parameter | Type | Required | Description |
|---|---|---|---|
state | any | Required | State passed to the System One model. The upstream accepts the native TypeSafe state shape. |
questions | object | Required | Typed questions evaluated against state. |
02
Output Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the completion |
object | string | Object type, e.g. "chat.completion" |
model | string | Model used for the completion |
choices | array | List of completion choices |
choices[].message.content | string | Generated text content |
choices[].finish_reason | string | Reason the generation stopped |
usage.prompt_tokens | integer | Number of tokens in the prompt |
usage.completion_tokens | integer | Number of tokens in the completion |
usage.total_tokens | integer | Total tokens used |
03
Code Examples
Ready-to-run snippets
curl https://api.sandbase.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "typesafe/jev-1.13",
"messages": [{"role": "user", "content": "Hello"}],
"temperature": 0.7,
"max_tokens": 2048,
"stream": true
}'