graphSearch 图搜索
(_ context.Context, _ string, _ *RAGOptions)
| 414 | |
| 415 | // graphSearch 图搜索 |
| 416 | func (r *RAG) graphSearch(_ context.Context, _ string, _ *RAGOptions) ([]*RetrievalItem, error) { |
| 417 | // TODO: 实现图搜索逻辑 |
| 418 | return []*RetrievalItem{}, nil |
| 419 | } |
| 420 | |
| 421 | // rerank 重排序 |
| 422 | func (r *RAG) rerank(ctx context.Context, query string, items []*RetrievalItem) []*RetrievalItem { |
no outgoing calls
no test coverage detected