From 32610093d20052e2c4abeb71d5d9bdabc9700c87 Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Mon, 3 Jun 2024 17:23:56 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- legacy/src/services/exa-client.ts | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/legacy/src/services/exa-client.ts b/legacy/src/services/exa-client.ts index dac09150..37d6e286 100644 --- a/legacy/src/services/exa-client.ts +++ b/legacy/src/services/exa-client.ts @@ -59,19 +59,25 @@ export namespace exa { startCrawlDate: z .string() .optional() - .describe('Start date for results based on crawl date.'), + .describe( + 'Start date for results based on crawl date (ISO 8601 format).' + ), endCrawlDate: z .string() .optional() - .describe('End date for results based on crawl date.'), + .describe('End date for results based on crawl date (ISO 8601 format).'), startPublishedDate: z .string() .optional() - .describe('Start date for results based on published date.'), + .describe( + 'Start date for results based on published date (ISO 8601 format).' + ), endPublishedDate: z .string() .optional() - .describe('End date for results based on published date.'), + .describe( + 'End date for results based on published date (ISO 8601 format).' + ), category: z .string() .optional() @@ -120,7 +126,7 @@ export namespace exa { /** The URL of the search result. */ url: string - /** The estimated creation date of the content. */ + /** The estimated creation date of the content (ISO 8601 format). */ publishedDate?: string /** The author of the content, if available. */