Package Exports
- @rcrsr/rill-ext-pinecone
- @rcrsr/rill-ext-pinecone/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@rcrsr/rill-ext-pinecone) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@rcrsr/rill-ext-pinecone
rill extension for Pinecone vector database integration. Provides host functions for vector CRUD, batch operations, and collection management.
Install
npm install @rcrsr/rill-ext-pineconeQuick Start
rill-config.json
{
"main": "search.rill",
"extensions": {
"mounts": {
"vec": "@rcrsr/rill-ext-pinecone"
},
"config": {
"vec": {
"apiKey": "${PINECONE_API_KEY}",
"index": "my-index"
}
}
}
}search.rill
use<ext:vec> => $vec
$vec.upsert("doc-1", $embedding, [title: "Example"])
$vec.search($embedding, [k: 5]) -> logrill-runDocumentation
See full documentation for configuration, functions, error handling, and cloud setup.
License
MIT