()
| 138 | |
| 139 | |
| 140 | def _get_url() -> str: |
| 141 | reqid = int(time.time()) % 1000000 |
| 142 | account_prefix = _account_prefix() |
| 143 | return ( |
| 144 | f"https://gemini.google.com{account_prefix}/_/BardChatUi/data/" |
| 145 | "assistant.lamda.BardFrontendService/StreamGenerate" |
| 146 | f"?bl={CONFIG['gemini_bl']}&hl=en&_reqid={reqid}&rt=c" |
| 147 | ) |
| 148 | |
| 149 | |
| 150 | def clean_text(text: str) -> str: |
no test coverage detected