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
244 lines
7.9 KiB
TypeScript
244 lines
7.9 KiB
TypeScript
import type { TavilySearchParams, TavilySearchResponse } from '@/tools/tavily/types'
|
|
import {
|
|
TAVILY_IMAGE_OUTPUT_PROPERTIES,
|
|
TAVILY_SEARCH_RESULT_OUTPUT_PROPERTIES,
|
|
} from '@/tools/tavily/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const searchTool: ToolConfig<TavilySearchParams, TavilySearchResponse> = {
|
|
id: 'tavily_search',
|
|
name: 'Tavily Search',
|
|
description:
|
|
"Perform AI-powered web searches using Tavily's search API. Returns structured results with titles, URLs, snippets, and optional raw content, optimized for relevance and accuracy.",
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
query: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'The search query to execute (e.g., "latest AI research papers 2024")',
|
|
},
|
|
max_results: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Maximum number of results (1-20, e.g., 5)',
|
|
},
|
|
topic: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Category type: general, news, or finance (e.g., "news")',
|
|
},
|
|
search_depth: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Search scope: basic (1 credit) or advanced (2 credits) (e.g., "advanced")',
|
|
},
|
|
include_answer: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'LLM-generated response: true/basic for quick answer or advanced for detailed (e.g., "advanced")',
|
|
},
|
|
include_raw_content: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Parsed HTML content: true/markdown or text format (e.g., "markdown")',
|
|
},
|
|
include_images: {
|
|
type: 'boolean',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Include image search results',
|
|
},
|
|
include_image_descriptions: {
|
|
type: 'boolean',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Add descriptive text for images',
|
|
},
|
|
include_favicon: {
|
|
type: 'boolean',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Include favicon URLs',
|
|
},
|
|
chunks_per_source: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Maximum number of relevant chunks per source (1-3, default: 3)',
|
|
},
|
|
time_range: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Filter by recency: day/d, week/w, month/m, year/y',
|
|
},
|
|
start_date: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Earliest publication date (YYYY-MM-DD format)',
|
|
},
|
|
end_date: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Latest publication date (YYYY-MM-DD format)',
|
|
},
|
|
include_domains: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'Comma-separated list of domains to whitelist (e.g., "github.com,stackoverflow.com")',
|
|
},
|
|
exclude_domains: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'Comma-separated list of domains to blacklist (e.g., "pinterest.com,reddit.com")',
|
|
},
|
|
country: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Boost results from specified country (general topic only)',
|
|
},
|
|
auto_parameters: {
|
|
type: 'boolean',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Automatic parameter configuration based on query intent',
|
|
},
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Tavily API Key',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: 'https://api.tavily.com/search',
|
|
method: 'POST',
|
|
headers: (params) => ({
|
|
Authorization: `Bearer ${params.apiKey}`,
|
|
'Content-Type': 'application/json',
|
|
}),
|
|
body: (params) => {
|
|
const body: Record<string, any> = {
|
|
query: params.query,
|
|
}
|
|
|
|
// Only include optional parameters if explicitly set
|
|
if (params.max_results) body.max_results = Number(params.max_results)
|
|
if (params.topic) body.topic = params.topic
|
|
if (params.search_depth) body.search_depth = params.search_depth
|
|
|
|
// Handle include_answer: only include if not empty and not "false"
|
|
if (
|
|
params.include_answer &&
|
|
params.include_answer !== 'false' &&
|
|
params.include_answer !== ''
|
|
) {
|
|
// Accept "basic" or "advanced" as strings, convert "true" to boolean
|
|
body.include_answer = params.include_answer === 'true' ? true : params.include_answer
|
|
}
|
|
|
|
// Handle include_raw_content: only include if not empty and not "false"
|
|
if (
|
|
params.include_raw_content &&
|
|
params.include_raw_content !== 'false' &&
|
|
params.include_raw_content !== ''
|
|
) {
|
|
// Accept "markdown" or "text" as strings, convert "true" to boolean
|
|
body.include_raw_content =
|
|
params.include_raw_content === 'true' ? true : params.include_raw_content
|
|
}
|
|
|
|
if (params.include_images !== undefined) body.include_images = params.include_images
|
|
if (params.include_image_descriptions !== undefined)
|
|
body.include_image_descriptions = params.include_image_descriptions
|
|
if (params.include_favicon !== undefined) body.include_favicon = params.include_favicon
|
|
if (params.chunks_per_source) body.chunks_per_source = Number(params.chunks_per_source)
|
|
if (params.time_range) body.time_range = params.time_range
|
|
if (params.start_date) body.start_date = params.start_date
|
|
if (params.end_date) body.end_date = params.end_date
|
|
if (params.include_domains) {
|
|
body.include_domains = params.include_domains.split(',').map((d) => d.trim())
|
|
}
|
|
if (params.exclude_domains) {
|
|
body.exclude_domains = params.exclude_domains.split(',').map((d) => d.trim())
|
|
}
|
|
if (params.country) body.country = params.country
|
|
if (params.auto_parameters !== undefined) body.auto_parameters = params.auto_parameters
|
|
|
|
return body
|
|
},
|
|
},
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const data = await response.json()
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
query: data.query,
|
|
results: (data.results ?? []).map((result: any) => ({
|
|
title: result.title,
|
|
url: result.url,
|
|
content: result.content,
|
|
...(result.score !== undefined && { score: result.score }),
|
|
...(result.raw_content && { raw_content: result.raw_content }),
|
|
...(result.favicon && { favicon: result.favicon }),
|
|
})),
|
|
...(data.answer && { answer: data.answer }),
|
|
...(data.images && { images: data.images }),
|
|
...(data.auto_parameters && { auto_parameters: data.auto_parameters }),
|
|
response_time: data.response_time,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
query: { type: 'string', description: 'The search query that was executed' },
|
|
results: {
|
|
type: 'array',
|
|
description:
|
|
'Ranked search results with titles, URLs, content snippets, and optional metadata',
|
|
items: {
|
|
type: 'object',
|
|
properties: TAVILY_SEARCH_RESULT_OUTPUT_PROPERTIES,
|
|
},
|
|
},
|
|
answer: {
|
|
type: 'string',
|
|
description: 'LLM-generated answer to the query (if requested)',
|
|
optional: true,
|
|
},
|
|
images: {
|
|
type: 'array',
|
|
description: 'Query-related images (if requested)',
|
|
optional: true,
|
|
items: {
|
|
type: 'object',
|
|
properties: TAVILY_IMAGE_OUTPUT_PROPERTIES,
|
|
},
|
|
},
|
|
auto_parameters: {
|
|
type: 'object',
|
|
description: 'Automatically selected parameters based on query intent (if enabled)',
|
|
optional: true,
|
|
},
|
|
response_time: { type: 'number', description: 'Time taken for the search request in seconds' },
|
|
},
|
|
}
|