Feat/claude cua support (#253)
* feat: add claude support * feat: add script for end-to-end evaluation with logging and task distribution * feat&fix: add tool result handling and update model default in evaluation script * chore: remove run_test_env.py script * feat&fix: implement action parsing for tool calls and update default action space * fix: update text formatting in action parsing and replace logger import * feat&fix: implement action parsing for tool calls and add screen size handling * feat: add setup instructions for Anthropic API integration * feat: add notice about image size limitations for Anthropic API * Delete test_env/logger.py * Delete test_env/utils.py
This commit is contained in:
23
mm_agents/anthropic/__init__.py
Normal file
23
mm_agents/anthropic/__init__.py
Normal file
@@ -0,0 +1,23 @@
|
||||
"""
|
||||
Anthropic agent implementation
|
||||
"""
|
||||
|
||||
from .main import AnthropicAgent
|
||||
from .tools import (
|
||||
BashTool,
|
||||
CLIResult,
|
||||
ComputerTool,
|
||||
EditTool,
|
||||
ToolCollection,
|
||||
ToolResult
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
'AnthropicAgent',
|
||||
'BashTool',
|
||||
'CLIResult',
|
||||
'ComputerTool',
|
||||
'EditTool',
|
||||
'ToolCollection',
|
||||
'ToolResult'
|
||||
]
|
||||
Reference in New Issue
Block a user