ปลั๊กอิน Pinecone มีการติดตั้งใช้งานเครื่องมือจัดทำดัชนีและเครื่องมือดึงข้อมูลที่ใช้ฐานข้อมูลเวกเตอร์ในระบบคลาวด์ของ Pinecone
การติดตั้ง
npm i --save genkitx-pinecone
การกำหนดค่า
หากต้องการใช้ปลั๊กอินนี้ ให้ระบุเมื่อเริ่มต้น Genkit
import { genkit } from 'genkit';
import { pinecone } from 'genkitx-pinecone';
const ai = genkit({
plugins: [
pinecone([
{
indexId: 'bob-facts',
embedder: textEmbedding004,
},
]),
],
});
คุณต้องระบุรหัสดัชนี Pinecone และรูปแบบการฝังที่ต้องการใช้
นอกจากนี้ คุณต้องกําหนดค่า Genkit ด้วยคีย์ API ของ Pinecone ซึ่งทำได้ 2 วิธีดังนี้
- ตั้งค่าตัวแปรสภาพแวดล้อม
PINECONE_API_KEY
ระบุในพารามิเตอร์ที่ไม่บังคับ
clientParams
clientParams: { apiKey: ..., }
ค่าของพารามิเตอร์นี้คือออบเจ็กต์
PineconeConfiguration
ซึ่งจะส่งไปยังไคลเอ็นต์ Pinecone คุณสามารถใช้ออบเจ็กต์นี้เพื่อส่งพารามิเตอร์ใดก็ได้ที่ไคลเอ็นต์รองรับ
การใช้งาน
นําเข้าข้อมูลอ้างอิงเครื่องมือดึงข้อมูลและเครื่องมือจัดทำดัชนีดังนี้
import { pineconeRetrieverRef } from 'genkitx-pinecone';
import { pineconeIndexerRef } from 'genkitx-pinecone';
จากนั้นใช้ข้อมูลอ้างอิงเหล่านี้กับ ai.retrieve()
และ ai.index()
// To use the index you configured when you loaded the plugin:
let docs = await ai.retrieve({ retriever: pineconeRetrieverRef, query });
// To specify an index:
export const bobFactsRetriever = pineconeRetrieverRef({
indexId: 'bob-facts',
});
docs = await ai.retrieve({ retriever: bobFactsRetriever, query });
// To use the index you configured when you loaded the plugin:
await ai.index({ indexer: pineconeIndexerRef, documents });
// To specify an index:
export const bobFactsIndexer = pineconeIndexerRef({
indexId: 'bob-facts',
});
await ai.index({ indexer: bobFactsIndexer, documents });
ดูการอภิปรายทั่วไปเกี่ยวกับเครื่องมือจัดทําดัชนีและเครื่องมือดึงข้อมูลได้ในหน้าการสร้างที่เพิ่มการดึงข้อมูล