d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
90 lines
2.7 KiB
TypeScript
90 lines
2.7 KiB
TypeScript
import type {
|
|
PineconeResponse,
|
|
PineconeUpsertTextParams,
|
|
PineconeUpsertTextRecord,
|
|
} from '@/tools/pinecone/types'
|
|
import type { ToolConfig } from '@/tools/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: {
|
|
indexHost: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Full Pinecone index host URL (e.g., "https://my-index-abc123.svc.pinecone.io")',
|
|
},
|
|
namespace: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Namespace to upsert records into (e.g., "documents", "embeddings")',
|
|
},
|
|
records: {
|
|
type: 'array',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'Record or array of records to upsert, each containing _id, text, and optional metadata',
|
|
},
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Pinecone API key',
|
|
},
|
|
},
|
|
|
|
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) => {
|
|
// Pinecone upsert returns 201 Created with empty body on success
|
|
return {
|
|
success: response.status === 201,
|
|
output: {
|
|
statusText: response.status === 201 ? 'Created' : response.statusText,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
statusText: {
|
|
type: 'string',
|
|
description: 'Status of the upsert operation',
|
|
},
|
|
},
|
|
}
|