mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-19 21:54:17 -04:00
9 lines
211 B
Go
9 lines
211 B
Go
package schema
|
|
|
|
import "context"
|
|
|
|
// Retriever is an interface that defines the behavior of a retriever.
|
|
type Retriever interface {
|
|
GetRelevantDocuments(ctx context.Context, query string) ([]Document, error)
|
|
}
|