Configuration for OpenAI Computer Use (Visual Evaluator)
| 66 | |
| 67 | @dataclass |
| 68 | class ComputerUseConfig: |
| 69 | """Configuration for OpenAI Computer Use (Visual Evaluator)""" |
| 70 | enabled: bool = False |
| 71 | model: str = "gpt-4o" # Updated model to a more common multimodal model |
| 72 | display_width: int = 1024 |
| 73 | display_height: int = 768 |
| 74 | screenshot_delay: float = 2.0 # Time to wait for UI to render before taking a screenshot |
| 75 | |
| 76 | # Sampling settings for the multimodal model |
| 77 | temperature: float = 0.1 |
| 78 | max_tokens: int = 2048 |
| 79 | |
| 80 | |
| 81 | @dataclass |
no outgoing calls
no test coverage detected