style: format code for consistency and readability across multiple files

This commit is contained in:
OhMyApps
2025-06-23 23:17:56 +02:00
parent 9945135a07
commit f8e559ebb2
13 changed files with 539 additions and 134 deletions

View File

@@ -512,10 +512,7 @@ of the evidence, even when it strongly points in one direction.""",
"provider_used": provider.get_provider_type().value,
}
return [TextContent(
type="text",
text=json.dumps(response_data, indent=2, ensure_ascii=False)
)]
return [TextContent(type="text", text=json.dumps(response_data, indent=2, ensure_ascii=False))]
# Otherwise, use standard workflow execution
return await super().execute_workflow(arguments)

View File

@@ -372,16 +372,15 @@ class SimpleTool(BaseTool):
follow_up_instructions = get_follow_up_instructions(0)
prompt = f"{prompt}\n\n{follow_up_instructions}"
logger.debug(f"Added follow-up instructions for new {self.get_name()} conversation") # Validate images if any were provided
logger.debug(
f"Added follow-up instructions for new {self.get_name()} conversation"
) # Validate images if any were provided
if images:
image_validation_error = self._validate_image_limits(
images, model_context=self._model_context, continuation_id=continuation_id
)
if image_validation_error:
return [TextContent(
type="text",
text=json.dumps(image_validation_error, ensure_ascii=False)
)]
return [TextContent(type="text", text=json.dumps(image_validation_error, ensure_ascii=False))]
# Get and validate temperature against model constraints
temperature, temp_warnings = self.get_validated_temperature(request, self._model_context)

View File

@@ -715,10 +715,7 @@ class BaseWorkflowMixin(ABC):
if continuation_id:
self.store_conversation_turn(continuation_id, response_data, request)
return [TextContent(
type="text",
text=json.dumps(response_data, indent=2, ensure_ascii=False)
)]
return [TextContent(type="text", text=json.dumps(response_data, indent=2, ensure_ascii=False))]
except Exception as e:
logger.error(f"Error in {self.get_name()} work: {e}", exc_info=True)
@@ -731,10 +728,7 @@ class BaseWorkflowMixin(ABC):
# Add metadata to error responses too
self._add_workflow_metadata(error_data, arguments)
return [TextContent(
type="text",
text=json.dumps(error_data, indent=2, ensure_ascii=False)
)]
return [TextContent(type="text", text=json.dumps(error_data, indent=2, ensure_ascii=False))]
# Hook methods for tool customization
@@ -1272,8 +1266,7 @@ class BaseWorkflowMixin(ABC):
special_status = expert_analysis["status"]
response_data["status"] = special_status
response_data["content"] = expert_analysis.get(
"raw_analysis",
json.dumps(expert_analysis, ensure_ascii=False)
"raw_analysis", json.dumps(expert_analysis, ensure_ascii=False)
)
del response_data["expert_analysis"]
@@ -1533,17 +1526,17 @@ class BaseWorkflowMixin(ABC):
error_data = {"status": "error", "content": "No arguments provided"}
# Add basic metadata even for validation errors
error_data["metadata"] = {"tool_name": self.get_name()}
return [TextContent(
type="text",
text=json.dumps(error_data, ensure_ascii=False)
)]
return [TextContent(type="text", text=json.dumps(error_data, ensure_ascii=False))]
# Delegate to execute_workflow
return await self.execute_workflow(arguments)
except Exception as e:
logger.error(f"Error in {self.get_name()} tool execution: {e}", exc_info=True)
error_data = {"status": "error", "content": f"Error in {self.get_name()}: {str(e)}"} # Add metadata to error responses
error_data = {
"status": "error",
"content": f"Error in {self.get_name()}: {str(e)}",
} # Add metadata to error responses
self._add_workflow_metadata(error_data, arguments)
return [
TextContent(