Models / Chat / Typhoon 2 70B Instruct API
Typhoon 2 70B Instruct API
Chat
Instruct Thai large language model with 70 billion parameters, based on Llama3.1-70B.
Try our Typhoon 2 API

API Usage
How to use Typhoon 2 70B InstructModel CardPrompting Typhoon 2 70B InstructApplications & Use CasesHow to use Typhoon 2 70B InstructTyphoon 2 70B Instruct API Usage
Endpoint
scb10x/scb10x-llama3-1-typhoon2-70b-instruct
RUN INFERENCE
curl -X POST "https://api.together.xyz/v1/chat/completions" \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "scb10x/scb10x-llama3-1-typhoon2-70b-instruct",
"messages": [],
"stream": true
}'
JSON RESPONSE
RUN INFERENCE
from together import Together
client = Together()
response = client.chat.completions.create(
model="scb10x/scb10x-llama3-1-typhoon2-70b-instruct",
messages=[],
stream=True
)
for token in response:
if hasattr(token, 'choices'):
print(token.choices[0].delta.content, end='', flush=True)
JSON RESPONSE
RUN INFERENCE
import Together from "together-ai";
const together = new Together();
const response = await together.chat.completions.create({
messages: [],
model: "scb10x/scb10x-llama3-1-typhoon2-70b-instruct",
stream: true
});
for await (const token of response) {
console.log(token.choices[0]?.delta?.content)
}
JSON RESPONSE
Model Provider:
SCB10X
Type:
Chat
Variant:
Instruct
Parameters:
70B
Deployment:
✔ Serverless
✔️ On-Demand Dedicated
Quantization
Context length:
Pricing:
$0.88
Check pricing
Run in playground
Deploy model
Quickstart docs
Quickstart docs
How to use Typhoon 2 70B Instruct
Model details
Prompting Typhoon 2 70B Instruct
Applications & Use Cases
How to use Typhoon 2 70B Instruct
Looking for production scale? Deploy on a dedicated endpoint
Deploy Typhoon 2 70B Instruct on a dedicated endpoint with custom hardware configuration, as many instances as you need, and auto-scaling.
