retriever

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 28, 2024 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AddReferencesToArgs

func AddReferencesToArgs(args map[string]any, refs []Reference) map[string]any

Types

type KnowledgeBaseRetriever

type KnowledgeBaseRetriever struct {
	langchaingoschema.Retriever
	base.BaseNode
	DocNullReturn string
	Instance      *apiretriever.KnowledgeBaseRetriever
	Finish        func()
}

func NewKnowledgeBaseRetriever

func NewKnowledgeBaseRetriever(baseNode base.BaseNode) *KnowledgeBaseRetriever

func (*KnowledgeBaseRetriever) Cleanup

func (l *KnowledgeBaseRetriever) Cleanup()

func (*KnowledgeBaseRetriever) Init

func (*KnowledgeBaseRetriever) Ready

func (l *KnowledgeBaseRetriever) Ready() (isReady bool, msg string)

func (*KnowledgeBaseRetriever) Run

func (l *KnowledgeBaseRetriever) Run(ctx context.Context, cli client.Client, args map[string]any) (map[string]any, error)

type KnowledgeBaseStuffDocuments

type KnowledgeBaseStuffDocuments struct {
	chains.StuffDocuments

	DocNullReturn string
	callbacks.SimpleHandler
	References []Reference
	// contains filtered or unexported fields
}

KnowledgeBaseStuffDocuments is similar to chains.StuffDocuments but with new joinDocuments method

func NewStuffDocuments

func NewStuffDocuments(llmChain *chains.LLMChain, docNullReturn string) *KnowledgeBaseStuffDocuments

func (*KnowledgeBaseStuffDocuments) Call

func (c *KnowledgeBaseStuffDocuments) Call(ctx context.Context, values map[string]any, options ...chains.ChainCallOption) (map[string]any, error)

func (*KnowledgeBaseStuffDocuments) GetCallbackHandler

func (c *KnowledgeBaseStuffDocuments) GetCallbackHandler() callbacks.Handler

func (KnowledgeBaseStuffDocuments) GetInputKeys

func (c KnowledgeBaseStuffDocuments) GetInputKeys() []string

func (KnowledgeBaseStuffDocuments) GetMemory

func (KnowledgeBaseStuffDocuments) GetOutputKeys

func (c KnowledgeBaseStuffDocuments) GetOutputKeys() []string

func (KnowledgeBaseStuffDocuments) HandleChainEnd

func (c KnowledgeBaseStuffDocuments) HandleChainEnd(ctx context.Context, outputValues map[string]any)

type Reference

type Reference struct {
	// Question row
	Question string `json:"question" example:"q: 旷工最小计算单位为多少天?"`
	// Answer row
	Answer string `json:"answer" example:"旷工最小计算单位为 0.5 天。"`
	// vector search score
	Score float32 `json:"score" example:"0.34"`
	// the qa file fullpath
	QAFilePath string `json:"qa_file_path" example:"dataset/dataset-playground/v1/qa.csv"`
	// line number in the qa file
	QALineNumber int `json:"qa_line_number" example:"7"`
	// source file name, only file name, not full path
	FileName string `json:"file_name" example:"员工考勤管理制度-2023.pdf"`
	// page number in the source file
	PageNumber int `json:"page_number" example:"1"`
	// related content in the source file or in webpage
	Content string `` /* 144-byte string literal not displayed */
	// Title of the webpage
	Title string `json:"title,omitempty" example:"开始使用 Microsoft 帐户 – Microsoft"`
	// URL of the webpage
	URL string `json:"url,omitempty" example:"https://www.microsoft.com/zh-cn/welcome"`
}

func (Reference) SimpleString

func (reference Reference) SimpleString() string

func (Reference) String

func (reference Reference) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL