Long-term Memory for AI. The Pinecone vector database makes it easy to build high-performance vector search applications. Developer-friendly, fully managed, and easily scalable without infrastructure hassles.
Deletes one or more vectors by ID, from a single namespace. See the documentation.
Adds a contact to a specific static list. See the documentation
Looks up and returns vectors by ID, from a single namespace.. See the documentation.
Create or update a batch of contacts by its ID or email. See the documentation
Searches a namespace, using a query vector. It retrieves the ids of the most similar items in a namespace, along with their similarity scores. See the documentation.
The Pinecone API enables you to work with vector databases, which are essential for building and scaling applications with AI features like recommendation systems, image recognition, and natural language processing. On Pipedream, you can create serverless workflows integrating Pinecone with other apps, automate data ingestion, query vector databases in response to events, and orchestrate complex data processing pipelines that leverage Pinecone's similarity search.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pinecone: {
type: "app",
app: "pinecone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pinecone.io/collections`,
headers: {
"Api-Key": `${this.pinecone.$auth.api_key}`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})