From e15f175ebaad7dd4d86bb37daa59ac5089b696ba Mon Sep 17 00:00:00 2001 From: Olivier Cots Date: Mon, 7 Sep 2026 23:51:02 +0200 Subject: [PATCH] Rename AI task input --- .github/workflows/AIHello.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/AIHello.yml b/.github/workflows/AIHello.yml index 091a8c91..59f67497 100644 --- a/.github/workflows/AIHello.yml +++ b/.github/workflows/AIHello.yml @@ -13,8 +13,8 @@ on: required: true type: string default: deepseek - prompt: - description: "Prompt sent to the AI agent" + task: + description: "Task sent to the AI agent" required: true type: string default: "Present the current project briefly." @@ -27,7 +27,7 @@ jobs: handbook_ref: main agent_name: hello model: ${{ inputs.model }} - prompt: ${{ inputs.prompt }} + task: ${{ inputs.task }} secrets: ALBERT_API_KEY: ${{ secrets.ALBERT_API_KEY }} HANDBOOK_READ_TOKEN: ${{ secrets.HANDBOOK_READ_TOKEN }}