Powering the next generation of AI applications with advanced, open-source vector similarity search technology.
Go to siteQdrant - https://qdrant.tech/ is a high-performance vector search-engine/database.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
qdrant: {
type: "app",
app: "qdrant",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.qdrant.$auth.url}`,
headers: {
"api-key": `${this.qdrant.$auth.api_key}`,
},
})
},
})
Qdrant uses API keys for authentication. When you connect your Qdrant account, Pipedream securely stores the keys so you can easily authenticate to Qdrant APIs in both code and no-code steps.
To retrieve your API Key and URL,
Your API Key will be displayed alognside a curl command. Extract the URL from the curl command displayed, e.g. for
curl -X GET 'https://1234.cloud.qdrant.io:6333' --header 'api-key: x'
the URL is https://1234.cloud.qdrant.io:6333'
.