From 6d4fa952170c5df56244016c7edebeb6d5ea9774 Mon Sep 17 00:00:00 2001 From: Han Xiao Date: Fri, 28 Mar 2025 09:15:28 +0800 Subject: [PATCH] fix: broken cn chars --- src/utils/schemas.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/schemas.ts b/src/utils/schemas.ts index 6fcb0e1..235e2fa 100644 --- a/src/utils/schemas.ts +++ b/src/utils/schemas.ts @@ -205,8 +205,8 @@ export class Schemas { z.string() .min(1) .max(30) - .describe(`A natual language search request in ${this.languageStyle}. Based on the deep intention behind the original question and the expected answer format.`)) - .describe(`Required when action='search'. Always prefer a single request, only add another request if the original question covers multiple aspects or elements and one search request is definitely not enough, each request focus on one specific aspect of the original question. Minimize mutual information between each request. Maximum ${MAX_QUERIES_PER_STEP} search requests.`) + .describe(`A Google search query. Based on the deep intention behind the original question and the expected answer format.`)) + .describe(`Required when action='search'. Always prefer a single search query, only add another search query if the original question covers multiple aspects or elements and one search request is definitely not enough, each request focus on one specific aspect of the original question. Minimize mutual information between each query. Maximum ${MAX_QUERIES_PER_STEP} search queries.`) .max(MAX_QUERIES_PER_STEP) }).optional(); }