Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
ghmark675
2025-11-15 18:53:17 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
259bd7cd71253152018b1d5653361872331149e4
259bd7cd
1 parent
30b815af
refactor(InsightEngine): change _cluster_and_sample_results() params default value
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
InsightEngine/agent.py
InsightEngine/agent.py
View file @
259bd7c
...
...
@@ -127,7 +127,10 @@ class DeepSearchAgent:
return
False
def
_cluster_and_sample_results
(
self
,
results
:
List
,
max_results
:
int
=
50
,
results_per_cluster
:
int
=
5
self
,
results
:
List
,
max_results
:
int
=
MAX_CLUSTERED_RESULTS
,
results_per_cluster
:
int
=
RESULTS_PER_CLUSTER
,
)
->
List
:
"""
对搜索结果进行聚类并采样
...
...
Please
register
or
login
to post a comment