Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

97 lines
2.8 KiB
TypeScript

import { prospeoHosting } from '@/tools/prospeo/hosting'
import {
extractProspeoError,
type ProspeoBulkEnrichCompanyParams,
type ProspeoBulkEnrichCompanyResponse,
} from '@/tools/prospeo/types'
import { parseDataArray } from '@/tools/prospeo/utils'
import type { ToolConfig } from '@/tools/types'
export const bulkEnrichCompanyTool: ToolConfig<
ProspeoBulkEnrichCompanyParams,
ProspeoBulkEnrichCompanyResponse
> = {
id: 'prospeo_bulk_enrich_company',
name: 'Prospeo Bulk Enrich Company',
description: 'Enrich up to 50 company records at once.',
version: '1.0.0',
hosting: prospeoHosting<ProspeoBulkEnrichCompanyParams>((_params, output) => {
// Prospeo reports the exact credits spent for the batch in total_cost.
if (typeof output.total_cost !== 'number') {
throw new Error('Prospeo bulk enrich company response missing total_cost')
}
return output.total_cost
}),
params: {
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Prospeo API key',
},
data: {
type: 'json',
required: true,
visibility: 'user-or-llm',
description:
'Array of up to 50 company records to enrich. Each must include an "identifier" plus one of: company_website, company_linkedin_url, company_name, or company_id.',
},
},
request: {
url: 'https://api.prospeo.io/bulk-enrich-company',
method: 'POST',
headers: (params) => ({
'X-KEY': params.apiKey,
'Content-Type': 'application/json',
}),
body: (params) => ({ data: parseDataArray(params.data) }),
},
transformResponse: async (response: Response) => {
if (!response.ok) {
throw new Error(await extractProspeoError(response))
}
const data = await response.json()
return {
success: true,
output: {
total_cost: data.total_cost ?? 0,
matched: data.matched ?? [],
not_matched: data.not_matched ?? [],
invalid_datapoints: data.invalid_datapoints ?? [],
},
}
},
outputs: {
total_cost: { type: 'number', description: 'Total credits spent by the request' },
matched: {
type: 'array',
description: 'Matched company records (identifier, company)',
items: {
type: 'object',
properties: {
identifier: {
type: 'string',
description: 'The identifier you submitted for this record',
},
company: { type: 'json', description: 'The matched company object', optional: true },
},
},
},
not_matched: {
type: 'array',
description: 'Identifiers of records we could not match',
items: { type: 'string' },
},
invalid_datapoints: {
type: 'array',
description: 'Identifiers of records that did not meet the minimum matching requirements',
items: { type: 'string' },
},
},
}