Vision support via images / pdfs etc that can be passed on to other models as part of analysis, additional context etc.
Image processing pipeline added OpenAI GPT-4.1 support Chat tool prompt enhancement Lint and code quality improvements
This commit is contained in:
@@ -24,6 +24,10 @@ class DebugIssueRequest(ToolRequest):
|
||||
None,
|
||||
description="Files or directories that might be related to the issue (must be absolute paths)",
|
||||
)
|
||||
images: Optional[list[str]] = Field(
|
||||
None,
|
||||
description="Optional images showing error screens, UI issues, logs displays, or visual debugging information",
|
||||
)
|
||||
runtime_info: Optional[str] = Field(None, description="Environment, versions, or runtime information")
|
||||
previous_attempts: Optional[str] = Field(None, description="What has been tried already")
|
||||
|
||||
@@ -69,6 +73,11 @@ class DebugIssueTool(BaseTool):
|
||||
"items": {"type": "string"},
|
||||
"description": "Files or directories that might be related to the issue (must be absolute paths)",
|
||||
},
|
||||
"images": {
|
||||
"type": "array",
|
||||
"items": {"type": "string"},
|
||||
"description": "Optional images showing error screens, UI issues, logs displays, or visual debugging information",
|
||||
},
|
||||
"runtime_info": {
|
||||
"type": "string",
|
||||
"description": "Environment, versions, or runtime information",
|
||||
|
||||
Reference in New Issue
Block a user