()
| 41 | // RetrievalAdapter performs retrieval for RAG (v1.5). |
| 42 | type RetrievalAdapter interface { |
| 43 | Name() string |
| 44 | Retrieve(ctx context.Context, query string, opts map[string]any) (types.RetrievalResult, error) |
| 45 | } |
| 46 |
nothing calls this directly
no outgoing calls
no test coverage detected