Cut chat in half. Threads is a Slack replacement designed for makers.
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See docs here
Post a message to a chat. First, make sure you add your Bot user to the chat. See the Documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
threads: {
type: "app",
app: "threads",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://trythreads.com/api/public/ping`,
headers: {
Authorization: `Bearer ${this.threads.$auth.api_key}`,
},
})
},
})
The OpenAI API is a powerful tool that provides access to a range of
high-powered machine learning models. With the OpenAI API, developers can
create products, services, and tools that enable humanizing AI experiences, and
build applications that extend the power of human language.
Using the OpenAI API, developers can create language-driven applications such
as:
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}`,
},
})
},
})