Get Code Assist endpoint setting. Environment variable: CODE_ASSIST_ENDPOINT Database config key: code_assist_endpoint Default: https://cloudcode-pa.googleapis.com
()
| 287 | |
| 288 | |
| 289 | async def get_code_assist_endpoint() -> str: |
| 290 | """ |
| 291 | Get Code Assist endpoint setting. |
| 292 | |
| 293 | Environment variable: CODE_ASSIST_ENDPOINT |
| 294 | Database config key: code_assist_endpoint |
| 295 | Default: https://cloudcode-pa.googleapis.com |
| 296 | """ |
| 297 | return str( |
| 298 | await get_config_value( |
| 299 | "code_assist_endpoint", "https://cloudcode-pa.googleapis.com", "CODE_ASSIST_ENDPOINT" |
| 300 | ) |
| 301 | ) |
| 302 | |
| 303 | |
| 304 | async def get_compatibility_mode_enabled() -> bool: |