Clear & Organized Team Communication
Emit new event for any new channel added in a workspace See the docs here
Emit new event for any new comment in a workspace See the docs here
Emit new event for any new updates in a workspace See the docs here
Emit new event for any new group added in a workspace See the docs here
Emit new event for any new user added to a workspace group See the docs here
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See the documentation
Summarizes text using the Chat API. See the documentation
Twist is a communication app designed for team collaboration, with a focus on organized, threaded conversations. Using the Twist API on Pipedream, you can automate workflows to enhance productivity, streamline communication, and integrate with other tools. From automating notifications to syncing tasks across platforms, the API unlocks valuable use cases for teams needing to stay in sync without the noise of email or less structured chat apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
twist: {
type: "app",
app: "twist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.twist.com/api/v3/users/get_session_user`,
headers: {
Authorization: `Bearer ${this.twist.$auth.oauth_access_token}`,
},
})
},
})
OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:
Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})