Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Set up the GitHub resource in Python.
aiohttp
import os from mirage import Workspace, MountMode from mirage.resource.github import GitHubConfig, GitHubResource config = GitHubConfig(token=os.environ["GITHUB_TOKEN"]) resource = GitHubResource( config=config, owner="my-org", repo="my-repo", ref="main") ws = Workspace({"/github": resource}, mode=MountMode.READ)
token