old-agentic
Travis Fischer 2024-06-11 02:11:21 -05:00
rodzic 7ba8efa40f
commit 7eed826077
2 zmienionych plików z 28 dodań i 4 usunięć

Wyświetl plik

@ -387,6 +387,7 @@ export namespace diffbot {
nbEmployeesMin?: number nbEmployeesMin?: number
nbEmployeesMax?: number nbEmployeesMax?: number
nbActiveEmployeeEdges?: number nbActiveEmployeeEdges?: number
nbUniqueInvestors?: number
educations?: Education[] educations?: Education[]
nationalities?: Nationality[] nationalities?: Nationality[]
allNames?: string[] allNames?: string[]
@ -432,6 +433,8 @@ export namespace diffbot {
naicsClassification2017?: any[] naicsClassification2017?: any[]
naicsClassification?: any[] naicsClassification?: any[]
sicClassification?: any[] sicClassification?: any[]
naceClassification?: any[]
iSicClassification?: any[]
employeeCategories?: any[] employeeCategories?: any[]
emailAddresses?: EmailAddress[] emailAddresses?: EmailAddress[]
age?: number age?: number
@ -455,6 +458,15 @@ export namespace diffbot {
technographics?: Technographic[] technographics?: Technographic[]
stock?: Stock stock?: Stock
companiesHouseIds?: string[] companiesHouseIds?: string[]
yearlyRevenues?: AnnualRevenue[]
}
export interface AnnualRevenue {
revenue: Amount
isCurrent: boolean
year: number
filingDate: DateTime
revenueDate: DateTime
} }
export interface Technographic { export interface Technographic {

Wyświetl plik

@ -18,7 +18,11 @@ export namespace tavily {
/** Search query. (required) */ /** Search query. (required) */
query: string query: string
/** The depth of the search. It can be basic or advanced. Default is basic for quick results and advanced for indepth high quality results but longer response time. Advanced calls equals 2 requests. */ /**
* The depth of the search. It can be basic or advanced. Default is basic
* for quick results and advanced for indepth high quality results but
* longer response time. Advanced calls equals 2 requests.
*/
search_depth?: 'basic' | 'advanced' search_depth?: 'basic' | 'advanced'
/** Include a synthesized answer in the search results. Default is `false`. */ /** Include a synthesized answer in the search results. Default is `false`. */
@ -33,10 +37,16 @@ export namespace tavily {
/** The number of maximum search results to return. Default is `5`. */ /** The number of maximum search results to return. Default is `5`. */
max_results?: number max_results?: number
/** A list of domains to specifically include in the search results. Default is `undefined`, which includes all domains. */ /**
* A list of domains to specifically include in the search results.
* Default is `undefined`, which includes all domains.
*/
include_domains?: string[] include_domains?: string[]
/** A list of domains to specifically exclude from the search results. Default is `undefined`, which doesn't exclude any domains. */ /**
* A list of domains to specifically exclude from the search results.
* Default is `undefined`, which doesn't exclude any domains.
*/
exclude_domains?: string[] exclude_domains?: string[]
} }
@ -68,7 +78,9 @@ export namespace tavily {
title: string title: string
/** /**
* The most query related content from the scraped url. We use proprietary AI and algorithms to extract only the most relevant content from each url, to optimize for context quality and size. * The most query related content from the scraped url. We use proprietary
* AI and algorithms to extract only the most relevant content from each
* url, to optimize for context quality and size.
*/ */
content: string content: string