Skip to content

Commit f4cc4c2

Browse files
committed
fix typecheck
1 parent e3a6450 commit f4cc4c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

evals/git-evals/prompting-agent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { AgentDecisionSchema } from './types'
2+
import type { CodebuffClient } from '../../sdk/src'
23
import type { AgentDefinition } from '@codebuff/common/templates/initial-agents-dir/types/agent-definition'
34
import type { z } from 'zod/v4'
4-
import { CodebuffClient } from '../../sdk/src'
55

66
// Agent definition for prompting
77
const promptingAgentDefinition: AgentDefinition = {
@@ -104,6 +104,6 @@ Analyze the conversation and decide your next action.`
104104
return {
105105
decision: 'halt' as const,
106106
reasoning: `No valid response from prompting agent.`,
107-
next_prompt: undefined,
107+
next_prompt: '',
108108
}
109109
}

0 commit comments

Comments
 (0)