docs: create/edit recipe button (#6145)

This commit is contained in:
dianed-square
2025-12-17 07:46:56 -08:00
committed by GitHub
parent fc8a4b4adf
commit c1b980f691
4 changed files with 58 additions and 56 deletions
@@ -0,0 +1,16 @@
import React from "react";
const RecipeFields = () => {
return (
<ul>
<li><strong>Title</strong> and <strong>description</strong></li>
<li><strong>Instructions</strong> that tell goose what to do</li>
<li><strong>Initial prompt</strong> to pre-fill the chat input</li>
<li><strong>Message</strong> to display at the top of the recipe and <strong>activity buttons</strong> for users to click</li>
<li><strong>Parameters</strong> to accept dynamic values</li>
<li><strong>Response JSON schema</strong> for <a href="/goose/docs/guides/recipes/session-recipes#structured-output-for-automation">structured output in automations</a></li>
</ul>
);
};
export default RecipeFields;