Create a personalized AI chatbot using your own data
Create a chat session for a chatbot specified by chatbot UUID. See the documentation
Creates a new chatbot that belongs to the authenticated user. See the documentation
Create a session message for a chatbot session specified by session UUID. See the documentation
The gpt-trainer API is a tool designed to train, run, and manage custom GPT-2 and GPT-3 models. It provides endpoints for submitting training data, starting the training process, and generating text from the trained model. With Pipedream's serverless integration platform, you can automate workflows that interact with the gpt-trainer API. You can trigger workflows using webhooks, schedule them, or even run them in response to events from other apps. Integrate the gpt-trainer API with other services on Pipedream to create powerful applications such as automated content creation, personalized messaging, or AI-driven data analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gpt_trainer: {
type: "app",
app: "gpt_trainer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.gpt-trainer.com/api/v1/chatbots`,
headers: {
Authorization: `Bearer ${this.gpt_trainer.$auth.api_key}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.