From 9f15f018716a0c64496ce8eca07e31f5ca85fa37 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Wed, 5 Nov 2025 15:25:01 -0700 Subject: [PATCH] feat: Updated the example role configuration file to also have the prompt field --- config.role.example.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config.role.example.md b/config.role.example.md index 08ef0d9..3159277 100644 --- a/config.role.example.md +++ b/config.role.example.md @@ -3,8 +3,10 @@ name: # The name of the role model: openai:gpt-4o # The model to use for this role temperature: 0.2 # The temperature to use for this role when querying the model -top_p: null # The top_p to use for this role when querying the model +top_p: 0 # The top_p to use for this role when querying the model enabled_tools: fs_ls,fs_cat # A comma-separated list of tools to enable for this role enabled_mcp_servers: github,gitmcp # A comma-separated list of MCP servers to enable for this role +prompt: null # A custom prompt to use for this role that will immediately query + # the model for output instead of using the instructions below --- -You are an expert at doing things. This is where I would write the instructions for the role. +You are an expert at doing things. This is where you write the instructions for the role.