mount
mount: Mount Storage Directory
mount: Mount Storage Directorydef mount(
agent_name: str,
root_dir: str,
base_url: str = aios_kernel_url
) -> StorageResponse# Mount a personal storage directory for the agent
response = mount(
"research_agent",
"/data/research_projects"
)
print(response["response"]["response_message"])Last updated