Return the Gemini account path prefix for non-default Google accounts.
()
| 133 | |
| 134 | |
| 135 | def account_prefix() -> str: |
| 136 | """Return the Gemini account path prefix for non-default Google accounts.""" |
| 137 | auth_user = CONFIG.get("auth_user") |
| 138 | if auth_user is None or auth_user == "": |
| 139 | return "" |
| 140 | return f"/u/{auth_user}" |
| 141 | |
| 142 | |
| 143 | # ─── Gemini Protocol ───────────────────────────────────────────────────────── |
no outgoing calls
no test coverage detected