From 3981d8591a8242425ee51a4e0b9a996be7ec191c Mon Sep 17 00:00:00 2001 From: lorenzejay Date: Thu, 17 Apr 2025 17:10:33 -0700 Subject: [PATCH] Update documentation to format parameter names in code style - Changed the formatting of `results_limit` and `score_threshold` in the documentation to use code style for better clarity and emphasis. - Ensured consistency in documentation presentation to enhance user understanding of configuration options. --- docs/concepts/knowledge.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/knowledge.mdx b/docs/concepts/knowledge.mdx index 305df8d73..9d1d0beab 100644 --- a/docs/concepts/knowledge.mdx +++ b/docs/concepts/knowledge.mdx @@ -172,8 +172,8 @@ agent = Agent( ``` - results_limit: is the number of relevant documents to return. Default is 3. - score_threshold: is the minimum score for a document to be considered relevant. Default is 0.35. + `results_limit`: is the number of relevant documents to return. Default is 3. + `score_threshold`: is the minimum score for a document to be considered relevant. Default is 0.35. ## More Examples