Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/rodin_mcp/rodin.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ async def download_file(client: httpx.AsyncClient, url: str, file_path: str, ret
@server.tool()
async def try_download_result(
parameters: DownloadRequestParameters
) -> str | tuple[str, Optional[MCPImage], str]:
) -> str | tuple[Optional[MCPImage], str]:
"""
This tool will try to download the generated assets if the Rodin completed the generation task.

[Notes]
- Always make sure an absolute path is given bu the user before calling this tool.
- Always make sure an absolute path is given by the user before calling this tool.
- The tool expects a directory for the download_to_path parameter.
- The tool will download files to {download_to_path}/{uuid}/ directory
- So when giving example, don't include the filename
Expand Down