(chatbot)
- postChatbotCreate - Create Chatbot
- getChatbotList - List Chatbots
- postChatbotGet - Get Chatbot
- getChatbotAnalytics - Get Chatbot analytics
- getChatbotGetMessages - Get Chatbot messages
- postChatbotUpdate - Update Chatbot
- postChatbotDelete - Delete Chatbot
- postChatbotReset - Reset Token
Create Chatbot
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.chatbot.postChatbotCreate({
name: "Chatbot -1",
brainId: "1f1d7a6a-e45b-4974-a0ba-98935650cb9c",
urls: [
"[\"https://byteleap.co\",\"https://ayushgoyal.dev\"]",
],
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { chatbotPostChatbotCreate } from "@isosceles-ai/sdk/funcs/chatbotPostChatbotCreate.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await chatbotPostChatbotCreate(isosceles, {
name: "Chatbot -1",
brainId: "1f1d7a6a-e45b-4974-a0ba-98935650cb9c",
urls: [
"[\"https://byteleap.co\",\"https://ayushgoyal.dev\"]",
],
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.PostChatbotCreateRequestBody | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.ChatbotResponse[]>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
List Chatbots
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.chatbot.getChatbotList({});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { chatbotGetChatbotList } from "@isosceles-ai/sdk/funcs/chatbotGetChatbotList.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await chatbotGetChatbotList(isosceles, {});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.GetChatbotListRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.ChatbotResponse[]>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Get Chatbot
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.chatbot.postChatbotGet({
chatbotId: "7a2e792d-cf48-49d2-a36d-186be034a9dc",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { chatbotPostChatbotGet } from "@isosceles-ai/sdk/funcs/chatbotPostChatbotGet.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await chatbotPostChatbotGet(isosceles, {
chatbotId: "7a2e792d-cf48-49d2-a36d-186be034a9dc",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.PostChatbotGetRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.ChatbotResponse>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Get Chatbot analytics
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.chatbot.getChatbotAnalytics({
chatbotId: "1a718a80-71c0-414b-915c-5c5991597ac7",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { chatbotGetChatbotAnalytics } from "@isosceles-ai/sdk/funcs/chatbotGetChatbotAnalytics.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await chatbotGetChatbotAnalytics(isosceles, {
chatbotId: "1a718a80-71c0-414b-915c-5c5991597ac7",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.GetChatbotAnalyticsRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.ChatbotAnalytics>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
note: there is a limit of 10000 messages
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.chatbot.getChatbotGetMessages({
chatbotId: "1a718a80-71c0-414b-915c-5c5991597ac7",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { chatbotGetChatbotGetMessages } from "@isosceles-ai/sdk/funcs/chatbotGetChatbotGetMessages.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await chatbotGetChatbotGetMessages(isosceles, {
chatbotId: "1a718a80-71c0-414b-915c-5c5991597ac7",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.GetChatbotGetMessagesRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.ChatbotMessages>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Update Chatbot
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.chatbot.postChatbotUpdate({
name: "Chatbot -1",
urls: [
"[\"https://byteleap.co\",\"https://ayushgoyal.dev\"]",
],
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { chatbotPostChatbotUpdate } from "@isosceles-ai/sdk/funcs/chatbotPostChatbotUpdate.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await chatbotPostChatbotUpdate(isosceles, {
name: "Chatbot -1",
urls: [
"[\"https://byteleap.co\",\"https://ayushgoyal.dev\"]",
],
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.PostChatbotUpdateRequestBody | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.ChatbotResponse[]>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Delete Chatbot
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.chatbot.postChatbotDelete({
chatbotId: "2de69bc3-3f60-46a2-be30-e95c98ab7a87",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { chatbotPostChatbotDelete } from "@isosceles-ai/sdk/funcs/chatbotPostChatbotDelete.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await chatbotPostChatbotDelete(isosceles, {
chatbotId: "2de69bc3-3f60-46a2-be30-e95c98ab7a87",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.PostChatbotDeleteRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.DeleteResponse>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Reset Token
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.chatbot.postChatbotReset({
chatbotId: "c7af119a-a5c6-47a4-a5fd-fbf96ef08851",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { chatbotPostChatbotReset } from "@isosceles-ai/sdk/funcs/chatbotPostChatbotReset.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await chatbotPostChatbotReset(isosceles, {
chatbotId: "c7af119a-a5c6-47a4-a5fd-fbf96ef08851",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.PostChatbotResetRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.ChatbotResponse>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |