Skip to content

Commit b33209b

Browse files
committed
Fix agent output template
1 parent 1c3262e commit b33209b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

llmstack/client/src/pages/AppEdit.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,9 @@ export default function AppEditPage(props) {
263263
]
264264
: appInputFields,
265265
output_template:
266-
app?.type?.slug === "agent" ? "{{agent}}" : appOutputTemplate,
266+
app?.type?.slug === "agent"
267+
? { markdown: "{{agent}}" }
268+
: appOutputTemplate,
267269
web_config: app?.web_config || {},
268270
slack_config: app?.slack_config || {},
269271
discord_config: app?.discord_config || {},

0 commit comments

Comments
 (0)