We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3a6450 commit f4cc4c2Copy full SHA for f4cc4c2
evals/git-evals/prompting-agent.ts
@@ -1,7 +1,7 @@
1
import type { AgentDecisionSchema } from './types'
2
+import type { CodebuffClient } from '../../sdk/src'
3
import type { AgentDefinition } from '@codebuff/common/templates/initial-agents-dir/types/agent-definition'
4
import type { z } from 'zod/v4'
-import { CodebuffClient } from '../../sdk/src'
5
6
// Agent definition for prompting
7
const promptingAgentDefinition: AgentDefinition = {
@@ -104,6 +104,6 @@ Analyze the conversation and decide your next action.`
104
return {
105
decision: 'halt' as const,
106
reasoning: `No valid response from prompting agent.`,
107
- next_prompt: undefined,
+ next_prompt: '',
108
}
109
0 commit comments