-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathapplication.ts
More file actions
28 lines (27 loc) · 911 Bytes
/
application.ts
File metadata and controls
28 lines (27 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export enum SearchMode {
embedding = 'views.application.dialog.vectorSearch',
keywords = 'views.application.dialog.fullTextSearch',
blend = 'views.application.dialog.hybridSearch'
}
export enum WorkflowType {
Base = 'base-node',
Start = 'start-node',
AiChat = 'ai-chat-node',
SearchKnowledge = 'search-knowledge-node',
Question = 'question-node',
Condition = 'condition-node',
Reply = 'reply-node',
ToolLib = 'tool-lib-node',
ToolLibCustom = 'tool-node',
RrerankerNode = 'reranker-node',
Application = 'application-node',
DocumentExtractNode = 'document-extract-node',
ImageUnderstandNode = 'image-understand-node',
VariableAssignNode = 'variable-assign-node',
FormNode = 'form-node',
TextToSpeechNode = 'text-to-speech-node',
SpeechToTextNode = 'speech-to-text-node',
ImageGenerateNode = 'image-generate-node',
McpNode = 'mcp-node',
IntentNode = 'intent-node',
}