kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
pull/643/head^2
rodzic
0f999c4f00
commit
2717eaa516
|
@ -59,19 +59,25 @@ export namespace exa {
|
||||||
startCrawlDate: z
|
startCrawlDate: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe('Start date for results based on crawl date.'),
|
.describe(
|
||||||
|
'Start date for results based on crawl date (ISO 8601 format).'
|
||||||
|
),
|
||||||
endCrawlDate: z
|
endCrawlDate: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe('End date for results based on crawl date.'),
|
.describe('End date for results based on crawl date (ISO 8601 format).'),
|
||||||
startPublishedDate: z
|
startPublishedDate: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe('Start date for results based on published date.'),
|
.describe(
|
||||||
|
'Start date for results based on published date (ISO 8601 format).'
|
||||||
|
),
|
||||||
endPublishedDate: z
|
endPublishedDate: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
.describe('End date for results based on published date.'),
|
.describe(
|
||||||
|
'End date for results based on published date (ISO 8601 format).'
|
||||||
|
),
|
||||||
category: z
|
category: z
|
||||||
.string()
|
.string()
|
||||||
.optional()
|
.optional()
|
||||||
|
@ -120,7 +126,7 @@ export namespace exa {
|
||||||
/** The URL of the search result. */
|
/** The URL of the search result. */
|
||||||
url: string
|
url: string
|
||||||
|
|
||||||
/** The estimated creation date of the content. */
|
/** The estimated creation date of the content (ISO 8601 format). */
|
||||||
publishedDate?: string
|
publishedDate?: string
|
||||||
|
|
||||||
/** The author of the content, if available. */
|
/** The author of the content, if available. */
|
||||||
|
|
Ładowanie…
Reference in New Issue