⚙️ fix: Ensure Azure AI Search TOP is a number (#3891)
allows configuration through AZURE_AI_SEARCH_SEARCH_OPTION_TOP enviroment variable
This commit is contained in:
@@ -77,7 +77,7 @@ class AzureAISearch extends StructuredTool {
|
||||
try {
|
||||
const searchOption = {
|
||||
queryType: this.queryType,
|
||||
top: this.top,
|
||||
top: typeof this.top === 'string' ? Number(this.top) : this.top,
|
||||
};
|
||||
if (this.select) {
|
||||
searchOption.select = this.select.split(',');
|
||||
|
||||
@@ -83,7 +83,7 @@ class AzureAISearch extends StructuredTool {
|
||||
try {
|
||||
const searchOption = {
|
||||
queryType: this.queryType,
|
||||
top: this.top,
|
||||
top: typeof this.top === 'string' ? Number(this.top) : this.top,
|
||||
};
|
||||
if (this.select) {
|
||||
searchOption.select = this.select.split(',');
|
||||
|
||||
Reference in New Issue
Block a user