Loading...
Loading...
Bắt đầu với API Token.AI và khai phá sức mạnh của hơn 50 mô hình AI
Đăng ký miễn phí, nhận API Key
Nhiều phương thức thanh toán
Tương thích OpenAI SDK
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://api.thistoken.ai/v1',
apiKey: 'your-api-key',
})
async function main() {
const response = await client.chat.completions.create({
model: 'gpt-4o',
messages: [
{ role: 'user', content: 'Hello, how are you?' }
],
})
console.log(response.choices[0].message.content)
}
main()Mọi ngôn ngữ tương thích OpenAI SDK đều dùng được
Need help? Contact us through a console ticket or [email protected].