mirror of
https://github.com/jina-ai/node-DeepResearch.git
synced 2026-03-22 07:29:35 +08:00
fix: broken cn chars
This commit is contained in:
@@ -205,8 +205,8 @@ export class Schemas {
|
|||||||
z.string()
|
z.string()
|
||||||
.min(1)
|
.min(1)
|
||||||
.max(30)
|
.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(`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 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(`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)
|
.max(MAX_QUERIES_PER_STEP)
|
||||||
}).optional();
|
}).optional();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user