chatbees chat widget
1.0.0
데모 팝업 채팅 위젯. 귀하의 필요에 맞게 사용자 정의하십시오.
개인 계정을 만들려면 가입하세요. 또는 가입 없이 ChatBees 공개 계정에서 사용해 볼 수도 있습니다. 참고: 공개 계정의 컬렉션은 2주 후에 영구 삭제될 수 있습니다.
귀하의 계정 또는 공개 계정에서 API 키를 생성하십시오. 그런 다음 API 키를 사용하여 컬렉션을 생성할 수 있습니다. REST 요청을 직접 보내거나 ChatBees Python 클라이언트 pip3 install chatbees-python-client
설치하여 사용할 수 있습니다.
POST /collections/create HTTP/1.1
Api-Key: my_api_key
Content-Type: application/json
Host: my_account_id.us-west-2.aws.chatbees.ai
# for public account, replace my_account_id with public
{
"namespace_name": "string",
"collection_name": "string",
// description is Optional
"description": "string" or null,
// Optional, whether the collection is publicly readable
"public_read": bool or null,
}
chatbees_demo.html
에서 chatbeesAccountID
및 chatbeesCollectionName
귀하의 계정 ID 및 컬렉션 이름으로 바꾸십시오. 채팅 위젯을 비공개로 사용하는 경우 chatbees_script.js
의 나머지 요청에 API 키를 추가하세요. public_read 컬렉션은 API 키 없이 질문에 답변합니다.
질문이 있으시면 언제든지 이 저장소에 이슈를 생성하시거나 [email protected]로 이메일을 보내주세요.