with Agentset and Rumi AI?
Emit new event when a new document is created. See the documentation
Emit new event when a ingest job is created. See the documentation
Emit new events when a session is completed. See the documentation
Complete retrieval pipeline for RAG with semantic search, filtering, and reranking. See the documentation
Add access to a session for specific email addresses or domains. See the documentation
Create an ingest job for the authenticated organization. See the documentation
Stream an AI query against session memories. See the documentation
Creates a namespace for the authenticated organization. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
agentset: {
type: "app",
app: "agentset",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.agentset.ai/v1/namespace`,
headers: {
Authorization: `Bearer ${this.agentset.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rumi_ai: {
type: "app",
app: "rumi_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rumi.ai/v1.0/users/me`,
headers: {
Authorization: `Bearer ${this.rumi_ai.$auth.oauth_access_token}`,
},
})
},
})