add llamaindex

This commit is contained in:
Henry
2023-12-04 20:04:09 +00:00
parent 423c23aaf0
commit 40f8371de9
56 changed files with 4509 additions and 536 deletions
@@ -0,0 +1,11 @@
export class ResponseSynthesizerClass {
type: string
textQAPromptTemplate?: any
refinePromptTemplate?: any
constructor(params: { type: string; textQAPromptTemplate?: any; refinePromptTemplate?: any }) {
this.type = params.type
this.textQAPromptTemplate = params.textQAPromptTemplate
this.refinePromptTemplate = params.refinePromptTemplate
}
}