Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion inc/Cli/Commands/Flows/QueueCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ public function clear( array $args, array $assoc_args ): void {
$flow_step_id = $resolved['step_id'];
}

$step_type = $this->getStepType( $flow_id, $flow_step_id );
$step_type = $this->getStepType( $flow_id, $flow_step_id );

if ( ! empty( $assoc_args['dry-run'] ) ) {
$list_ability_id = ( 'fetch' === $step_type )
Expand Down
2 changes: 1 addition & 1 deletion inc/Engine/AI/conversation-loop.php
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ function datamachine_run_conversation(
// Substrate now surfaces turn_count, final_content, usage, and
// request_metadata directly on the result (agents-api#136). Keep DM-only
// diagnostics namespaced so the top level remains the Agents API result.
$datamachine_metadata = array(
$datamachine_metadata = array(
'completed' => ! in_array( (string) ( $result['status'] ?? '' ), array( 'budget_exceeded', 'interrupted' ), true ),
'last_tool_calls' => $last_tool_calls,
'tool_calls' => $all_tool_calls,
Expand Down
Loading