Use Noticeable to announce new features, your latest releases, and relevant news. Improve user engagement with an easy to use newsfeed and changelog.
Emit new events when a new email subscription created. See the docs
Emit new events when an email subscription is deleted. See the docs
Emit new events when a new publication created. See the docs
Emit new events when a new publication deleted. See the docs
Emit new events when a new publication is updated. See the docs
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
The Noticeable API on Pipedream allows you to automate the management of your project's news and updates efficiently. By integrating Noticeable with Pipedream, you can trigger workflows based on new publications, update timelines, and synchronize content across various platforms. This can help keep your users or team informed about the latest changes, releases or announcements with minimal manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
noticeable: {
type: "app",
app: "noticeable",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.noticeable.io/graphql`,
headers: {
"Authorization": `Apikey ${this.noticeable.$auth.api_key}`,
},
params: {
//Replace the query below with your own
query: `query { organization { projects(first: 10) { pageInfo { hasNextPage } edges {
node { name posts(last: 10) { edges { node { title permalink } } } } } } } }`,
},
})
},
})
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}`,
},
})
},
})