Echo Fine-tunes
Retrieve echo fine-tunes for the chatbot
GET
https://api.sitespeak.ai/v1/{chatbot_id}/finetunes
Returns the echo fine-tunes for the chatbot. These are updated or text question and answers for your chatbot.
Path Parameters
Name | Type | Description |
---|---|---|
chatbot_id* | String | The ID of your chatbot. You can find the ID on the settings page for your chatbot. |
Headers
Name | Type | Description |
---|---|---|
Accept* | String | application/json |
Authorization* | String | Bearer {api_token} |
Create or update echo fine-tunes for the chatbot
POST
https://api.sitespeak.ai/v1/{chatbot_id}/finetunes
Creates or updates an existing echo fine-tune for the chatbot.
Path Parameters
Name | Type | Description |
---|---|---|
chatbot_id* | String | The ID of your chatbot. You can find the ID on the settings page for your chatbot. |
Headers
Name | Type | Description |
---|---|---|
Accept* | String | application/json |
Authorization* | String | Bearer {api_token} |
Body
Name | Type | Description |
---|---|---|
| String | Question that you would like to add an answer for. |
| String | The answer you would like your chatbot to respond with. |
Response
Delete an echo fine-tune for the chatbot
DELETE
https://api.sitespeak.ai/v1/{chatbot_id}/finetunes/{finetune_id}
Deletes an echo fine-tune for the chatbot.
Path Parameters
Name | Type | Description |
---|---|---|
chatbot_id* | String | The ID of your chatbot. You can find the ID on the settings page for your chatbot. |
finetune_id* | String | The ID of the fine-tune you want to delete. |
Headers
Name | Type | Description |
---|---|---|
Accept* | String | application/json |
Authorization* | String | Bearer {api_token} |
Response
Last updated