• 서비스
  • 가격
  • 리소스
  • 기술지원
이 페이지는 현재 영어로만 제공되며 한국어 버전은 곧 제공될 예정입니다. 기다려 주셔서 감사드립니다.
Feedback

Coze

Coze (by ByteDance) is a no-code AI bot platform that lets you create and manage conversational bots with built-in plugins, knowledge bases, and memory — all from a visual interface. Ideal if you want to rapidly prototype AI bots with rich plugin capabilities without writing custom backend logic.

Usage

To use Coze as the LLM engine, pass the following JSON in the LLMConfig field of the StartAIConversation API. Coze uses its own dedicated LLMType:
// json — LLMConfig
{
"LLMType": "coze",
"APIKey": "<your_coze_api_key>",
"APIUrl": "https://api.coze.com/v3/chat?conversation_id=xxx",
"BotId": "<your_bot_id>",
"Streaming": true,
"UserId": "user_id",
"conversation_id": "xxx"
}
For full Conversational AI configuration (STT, TTS, interruption handling, VAD, etc.), see the TRTC Conversational AI API Reference.

Parameter reference

Field
Type
Required
Description
LLMType
String
Yes
Fixed value: "coze".
APIKey
String
Yes
Coze API key. Obtain from Coze Developer Portal.
APIUrl
String
Yes
Coze chat endpoint (includes conversation_id as query param).
BotId
String
Yes
Your Coze Bot ID from the Coze platform.
Streaming
Boolean
No
Enable streaming. Default: true.
UserId
String
No
User identifier for session tracking.
conversation_id
String
No
Conversation ID to continue an existing session.
For more details on Coze platform, see the Coze documentation.