-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Open
Copy link
Labels
PipelinesTo group issues regarding Pipelines functionalityTo group issues regarding Pipelines functionality
Milestone
Description
Title: Newly created LLM nodes include deprecated "prompt" field in YAML
Description:
When creating a new LLM node in a pipeline, the generated YAML includes a deprecated prompt field. This field has been replaced by system and task in input_mapping and should not appear in new nodes.
Steps to reproduce:
- Create a new pipeline or open an existing one.
- Add a new LLM node.
- Switch to YAML view and inspect the LLM node structure.
Actual Result:
The YAML includes:
nodes:
- id: LLM 1
type: llm
prompt:
type: string
value: ''
input_mapping:
system:
type: fixed
value: ''
task:
type: fixed
value: ''
...Expected Result:
The prompt field should not be present in newly created LLM nodes. Only input_mapping with system and task should be included:
nodes:
- id: LLM 1
type: llm
input_mapping:
system:
type: fixed
value: ''
task:
type: fixed
value: ''
chat_history:
type: fixed
value: []
...Notes (optional):
- The
promptfield is deprecated; remove it from the node creation template. - Existing nodes with
promptmay need migration logic, but new nodes should not include it.
Metadata
Metadata
Assignees
Labels
PipelinesTo group issues regarding Pipelines functionalityTo group issues regarding Pipelines functionality
Type
Projects
Status
Verified on DEV Env