
Description
The Add Transcript Steps Node allows you to add messages to the conversation transcript. These messages become part of the LLM context and directly influence AI Agent behavior, tool handling, conversation flow, and contextual awareness. Use this Node to inject additional information into the transcript without requiring a new user input. The Node is especially helpful in complex AI Agent architectures.Restrictions
- This Node isn’t compatible with the
@cognigyRecentConversationand@cognigyRecentUserInputstags in the LLM Prompt Node. - Overuse of empty or redundant transcript entries can reduce clarity and make debugging more difficult.
Parameters
| Parameter | Type | Description |
|---|---|---|
| Role | Selector | Defines the conversation actor for the added transcript entry. Select one of the following roles:
|
| Type | Selector | Only the Input type is available. This type means the provided data is processed as text input. |
| Text | CognigyScript | The textual content added to the transcript. This content becomes part of the LLM context and can provide instructions, external data, system messages, or conversation continuity. |
| Data | JSON | Optional structured metadata that complements the Text field. For example, { "type": "motivational" } can be used to categorize the input or provide context to influence how the system processes the text. |
Use Cases
The following use cases illustrate where the Add Transcript Step Node is used.Add External System Results
Add External System Results
Inject API responses such as CRM data, ID&V results, or order information into the transcript so the AI Agent can use this data during reasoning.
Manage AI Agent Transitions
Manage AI Agent Transitions
Add transcript entries to mark milestones such as completed handovers or transitions between AI Agents.
Context Refocusing
Context Refocusing
Insert targeted messages to emphasize new priorities or provide technical context in long-running conversations.
Workflow-Based Context Injection
Workflow-Based Context Injection
After deterministic processes, for example, GDPR handling, add follow-up instructions to guide subsequent behavior.