Agent search
AgentSearchReader #
Bases: BaseReader
代理搜索读取器。
Source code in llama_index/readers/agent_search/base.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
load_data #
load_data(
query: str,
search_provider: str = "bing",
llm_model: str = "SciPhi/Sensei-7B-V1",
) -> List[Document]
从SciPhi托管的AgentSearch中加载数据。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_name |
str
|
Milvus集合的名称。 |
required |
query_vector |
List[float]
|
查询向量。 |
required |
limit |
int
|
要返回的结果数量。 |
required |
Returns:
Type | Description |
---|---|
List[Document]
|
List[Document]: 文档列表。 |
Source code in llama_index/readers/agent_search/base.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|