Files
langchaingo/schema/documents.go
T
Colin Duggan 6cfe92cfda schema: add score attribute to document type to allow similarity score to be returned from vector search (#298)
Include score field in document type to provide more context about the accuracy of results returned by similaritysearch
2023-09-27 12:04:53 -07:00

9 lines
172 B
Go

package schema
// Document is the interface for interacting with a document.
type Document struct {
PageContent string
Metadata map[string]any
Score float32
}