mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
86 lines
2.6 KiB
TypeScript
86 lines
2.6 KiB
TypeScript
import { ToolConfig } from '../types'
|
|
import { PineconeResponse, PineconeUpsertTextParams, PineconeUpsertTextRecord } from './types'
|
|
|
|
export const upsertTextTool: ToolConfig<PineconeUpsertTextParams, PineconeResponse> = {
|
|
id: 'pinecone_upsert_text',
|
|
name: 'Pinecone Upsert Text',
|
|
description: 'Insert or update text records in a Pinecone index',
|
|
version: '1.0',
|
|
|
|
params: {
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
requiredForToolCall: true,
|
|
description: 'Pinecone API key',
|
|
},
|
|
indexHost: {
|
|
type: 'string',
|
|
required: true,
|
|
requiredForToolCall: true,
|
|
description: 'Full Pinecone index host URL',
|
|
},
|
|
namespace: { type: 'string', required: true, description: 'Namespace to upsert records into' },
|
|
records: {
|
|
type: 'array',
|
|
required: true,
|
|
description:
|
|
'Record or array of records to upsert, each containing _id, text, and optional metadata',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
method: 'POST',
|
|
url: (params) => `${params.indexHost}/records/namespaces/${params.namespace}/upsert`,
|
|
headers: (params) => ({
|
|
'Api-Key': params.apiKey,
|
|
'Content-Type': 'application/x-ndjson',
|
|
'X-Pinecone-API-Version': '2025-01',
|
|
}),
|
|
body: (params) => {
|
|
// If records is a string, parse it line by line
|
|
let records: PineconeUpsertTextRecord[]
|
|
if (typeof params.records === 'string') {
|
|
// Split by newlines and parse each line
|
|
records = (params.records as string)
|
|
.split('\n')
|
|
.filter((line: string) => line.trim()) // Remove empty lines
|
|
.map((line: string) => {
|
|
// Clean and parse each line
|
|
const cleanJson = line.trim().replace(/'\\''/g, "'")
|
|
return JSON.parse(cleanJson) as PineconeUpsertTextRecord
|
|
})
|
|
} else {
|
|
records = Array.isArray(params.records) ? params.records : [params.records]
|
|
}
|
|
|
|
// Convert to NDJSON format
|
|
const ndjson = records.map((r: PineconeUpsertTextRecord) => JSON.stringify(r)).join('\n')
|
|
return { body: ndjson }
|
|
},
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
// Handle empty response (201 Created)
|
|
if (response.status === 201) {
|
|
return {
|
|
success: true,
|
|
output: {
|
|
statusText: 'Created',
|
|
},
|
|
}
|
|
}
|
|
|
|
// Handle response with content
|
|
const data = await response.json()
|
|
return {
|
|
success: true,
|
|
output: {
|
|
upsertedCount: data.upsertedCount || 0,
|
|
},
|
|
}
|
|
},
|
|
|
|
transformError: (error) => `Pinecone text upsert failed: ${error.message}`,
|
|
}
|