mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: Graham Neubig <neubig@gmail.com> Co-authored-by: llamantino <213239228+llamantino@users.noreply.github.com> Co-authored-by: mamoodi <mamoodiha@gmail.com> Co-authored-by: Tim O'Farrell <tofarr@gmail.com> Co-authored-by: Hiep Le <69354317+hieptl@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ryan H. Tran <descience.thh10@gmail.com> Co-authored-by: Neeraj Panwar <49247372+npneeraj@users.noreply.github.com> Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com> Co-authored-by: Insop <1240382+insop@users.noreply.github.com> Co-authored-by: test <test@test.com> Co-authored-by: Engel Nyst <enyst@users.noreply.github.com> Co-authored-by: Zhonghao Jiang <zhonghao.J@outlook.com> Co-authored-by: Ray Myers <ray.myers@gmail.com>
33 lines
949 B
Python
33 lines
949 B
Python
from dataclasses import dataclass, field
|
|
from typing import Any, ClassVar
|
|
|
|
from openhands.core.schema import ActionType
|
|
from openhands.events.action.action import Action, ActionSecurityRisk
|
|
|
|
|
|
@dataclass
|
|
class MCPAction(Action):
|
|
name: str
|
|
arguments: dict[str, Any] = field(default_factory=dict)
|
|
thought: str = ''
|
|
action: str = ActionType.MCP
|
|
runnable: ClassVar[bool] = True
|
|
security_risk: ActionSecurityRisk = ActionSecurityRisk.UNKNOWN
|
|
|
|
@property
|
|
def message(self) -> str:
|
|
return (
|
|
f'I am interacting with the MCP server with name:\n'
|
|
f'```\n{self.name}\n```\n'
|
|
f'and arguments:\n'
|
|
f'```\n{self.arguments}\n```'
|
|
)
|
|
|
|
def __str__(self) -> str:
|
|
ret = '**MCPAction**\n'
|
|
if self.thought:
|
|
ret += f'THOUGHT: {self.thought}\n'
|
|
ret += f'NAME: {self.name}\n'
|
|
ret += f'ARGUMENTS: {self.arguments}'
|
|
return ret
|