diff --git a/src/main/kotlin/nl/trivion/softwarefabric/agents/DeveloperAgent.kt b/src/main/kotlin/nl/trivion/softwarefabric/agents/DeveloperAgent.kt index e2a00c5..987aef1 100644 --- a/src/main/kotlin/nl/trivion/softwarefabric/agents/DeveloperAgent.kt +++ b/src/main/kotlin/nl/trivion/softwarefabric/agents/DeveloperAgent.kt @@ -107,21 +107,6 @@ class DeveloperAgent(private val giteaService: GiteaService) { ) } - // Create the agent -// val agent = AIAgent( -// promptExecutor = promptExecutor, -// toolRegistry = toolRegistry, -// strategy = agentStrategy, -// agentConfig = agentConfig, -// installFeatures = { -// install(EventHandler) { -// onAgentCompleted { it -> -// log.info("Result: ${it.result}") -// } -// } -// } -// ) - fun createAgent(): AIAgent { return AIAgent( promptExecutor = promptExecutor, diff --git a/src/main/kotlin/nl/trivion/softwarefabric/tools/ProjectTool.kt b/src/main/kotlin/nl/trivion/softwarefabric/tools/ProjectTool.kt index 3e2f652..42ab2f2 100644 --- a/src/main/kotlin/nl/trivion/softwarefabric/tools/ProjectTool.kt +++ b/src/main/kotlin/nl/trivion/softwarefabric/tools/ProjectTool.kt @@ -29,6 +29,6 @@ class ProjectTool(private val giteaService: GiteaService): ToolSet { log.info("role: $role question: $question") giteaService.addComment(taskNumber, question) - return "Question is send to $role. Do not ask any more questions until this question is answered!" + return "Question is send to $role. Do not ask any more questions until this question is answered! For now you are done!" } } \ No newline at end of file