mirror of https://github.com/langgenius/dify.git
47 lines
817 B
TypeScript
47 lines
817 B
TypeScript
import { MemoryRole } from '../../types'
|
|
import type { LLMNodeType } from './types'
|
|
import { Resolution } from '@/types/app'
|
|
|
|
export const mockData: LLMNodeType = {
|
|
title: 'Test',
|
|
desc: 'Test',
|
|
type: 'Test',
|
|
model: {
|
|
provider: 'openai',
|
|
name: 'gpt-4',
|
|
mode: 'chat',
|
|
completion_params: {
|
|
temperature: 0.7,
|
|
},
|
|
},
|
|
variables: [
|
|
{
|
|
variable: 'name',
|
|
value_selector: ['aaa', 'name'],
|
|
},
|
|
{
|
|
variable: 'age',
|
|
value_selector: ['bbb', 'b', 'c'],
|
|
},
|
|
],
|
|
prompt: [],
|
|
memory: {
|
|
role_prefix: MemoryRole.assistant,
|
|
window: {
|
|
enabled: false,
|
|
size: 0,
|
|
},
|
|
},
|
|
context: {
|
|
enabled: false,
|
|
size: 0,
|
|
},
|
|
vision: {
|
|
enabled: false,
|
|
variable_selector: [],
|
|
configs: {
|
|
detail: Resolution.low,
|
|
},
|
|
},
|
|
}
|