|
|
@@ -248,10 +248,22 @@ export const initialData: FlowDocumentJSON = {
|
|
|
data: {
|
|
|
title: 'LLM_0',
|
|
|
inputsValues: {
|
|
|
- modelType: 'gpt-3.5-turbo',
|
|
|
- temperature: 0.5,
|
|
|
- systemPrompt: 'You are an AI assistant.',
|
|
|
- prompt: '',
|
|
|
+ modelType: {
|
|
|
+ type: 'constant',
|
|
|
+ content: 'gpt-3.5-turbo',
|
|
|
+ },
|
|
|
+ temperature: {
|
|
|
+ type: 'constant',
|
|
|
+ content: 0.5,
|
|
|
+ },
|
|
|
+ systemPrompt: {
|
|
|
+ type: 'constant',
|
|
|
+ content: 'You are an AI assistant.',
|
|
|
+ },
|
|
|
+ prompt: {
|
|
|
+ type: 'constant',
|
|
|
+ content: '',
|
|
|
+ },
|
|
|
},
|
|
|
inputs: {
|
|
|
type: 'object',
|