feat: Handle Click Events for Microagents and Conversations on the Microagent Management Page. (#9853)

This commit is contained in:
Hiep Le
2025-07-23 01:01:49 +07:00
committed by GitHub
parent e045b757fa
commit d567d22748
24 changed files with 1660 additions and 121 deletions

View File

@@ -254,6 +254,7 @@ class MicroagentResponse(BaseModel):
tools: list[str] = []
created_at: datetime
git_provider: ProviderType
path: str # Path to the microagent in the Git provider (e.g., ".openhands/microagents/tell-me-a-joke")
def _get_file_creation_time(repo_dir: Path, file_path: Path) -> datetime:
@@ -453,6 +454,7 @@ def _process_microagents(
),
created_at=created_at,
git_provider=git_provider,
path=str(agent_file_path.relative_to(repo_dir)),
)
)
@@ -476,6 +478,7 @@ def _process_microagents(
),
created_at=created_at,
git_provider=git_provider,
path=str(agent_file_path.relative_to(repo_dir)),
)
)