Feature/Indexing (#1802)

* indexing

* fix for multiple files upsert

* fix default Postgres port

* fix SQLite node description

* add MySQLRecordManager node

* fix MySQL unique index

* add upsert history

* update jsx ui

* lint-fix

* update dialog details

* update llamaindex pinecone

---------

Co-authored-by: chungyau97 <chungyau97@gmail.com>
This commit is contained in:
Henry Heng
2024-04-02 23:47:19 +01:00
committed by GitHub
parent 957694a912
commit e422ce287b
67 changed files with 3006 additions and 246 deletions
+8
View File
@@ -93,6 +93,14 @@ export interface IVariable {
createdDate: Date
}
export interface IUpsertHistory {
id: string
chatflowid: string
result: string
flowData: string
date: Date
}
export interface IComponentNodes {
[key: string]: INode
}