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

150 lines
5.1 KiB
TypeScript

import type { EnrichSearchJobsParams, EnrichSearchJobsResponse } from '@/tools/enrich/types'
import type { ToolConfig } from '@/tools/types'
export const searchJobsTool: ToolConfig<EnrichSearchJobsParams, EnrichSearchJobsResponse> = {
id: 'enrich_search_jobs',
name: 'Enrich Search Jobs',
description:
'Search LinkedIn job postings by keywords with filters for location, job type, workplace type, experience level, and company.',
version: '1.0.0',
params: {
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Enrich API key',
},
keywords: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Search keywords (e.g., "software engineer")',
},
location: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Location filter (e.g., London)',
},
jobTypes: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Comma-separated job types (e.g., "full time, part time")',
},
workplaceTypes: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Comma-separated workplace types (e.g., "on site, remote")',
},
experienceLevels: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Comma-separated experience levels (e.g., "internship, associate")',
},
companyIds: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Comma-separated LinkedIn company IDs to filter by (e.g., "2048, 3050")',
},
timePosted: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Time filter (e.g., past_24hrs, past_week, past_month)',
},
start: {
type: 'number',
required: false,
visibility: 'user-or-llm',
description: 'Number of records to skip for pagination (default: 0)',
},
},
request: {
url: (params) => {
const url = new URL('https://api.enrich.so/v1/api/search-jobs')
url.searchParams.append('keywords', params.keywords.trim())
if (params.location) url.searchParams.append('location', params.location.trim())
if (params.jobTypes) url.searchParams.append('jobTypes', params.jobTypes)
if (params.workplaceTypes) url.searchParams.append('workplaceTypes', params.workplaceTypes)
if (params.experienceLevels) {
url.searchParams.append('experienceLevels', params.experienceLevels)
}
if (params.companyIds) url.searchParams.append('companyIds', params.companyIds)
if (params.timePosted) url.searchParams.append('timePosted', params.timePosted)
if (params.start !== undefined) url.searchParams.append('start', String(params.start))
return url.toString()
},
method: 'GET',
headers: (params) => ({
Authorization: `Bearer ${params.apiKey}`,
'Content-Type': 'application/json',
}),
},
transformResponse: async (response: Response) => {
const data = await response.json()
const rawJobs = data.data ?? data.jobs ?? (Array.isArray(data) ? data : [])
const jobs = rawJobs.map((job: any) => ({
title: job.title ?? null,
companyName: job.company_name ?? job.companyName ?? null,
companyLink: job.company_link ?? job.companyLink ?? null,
companyLogo: job.company_logo_url ?? job.company_logo ?? job.companyLogo ?? null,
location: job.location ?? null,
url: job.url ?? job.job_url ?? job.jobUrl ?? null,
postedDate: job.posted_date ?? job.posting_date ?? job.postedDate ?? null,
postedTimestamp:
job.posted_timestamp ??
job.posting_timestamp ??
job.timestamp ??
job.postedTimestamp ??
null,
hiringStatus: job.hiring_status ?? job.hiringStatus ?? null,
criteria: job.criteria ?? job.employment_criteria ?? job.employmentCriteria ?? null,
}))
return {
success: true,
output: {
count: data.count ?? jobs.length,
jobs,
},
}
},
outputs: {
count: {
type: 'number',
description: 'Number of job postings returned',
},
jobs: {
type: 'array',
description: 'Job postings',
items: {
type: 'object',
properties: {
title: { type: 'string', description: 'Job title' },
companyName: { type: 'string', description: 'Hiring company name' },
companyLink: { type: 'string', description: 'Company LinkedIn URL' },
companyLogo: { type: 'string', description: 'Company logo URL' },
location: { type: 'string', description: 'Job location' },
url: { type: 'string', description: 'Job posting URL' },
postedDate: { type: 'string', description: 'Date the job was posted' },
postedTimestamp: { type: 'string', description: 'Timestamp the job was posted' },
hiringStatus: { type: 'string', description: 'Hiring status' },
criteria: {
type: 'object',
description: 'Employment criteria (seniority, type, function)',
},
},
},
},
},
}