| 1 | /// <reference types="astro/client" /> |
| 2 | |
| 3 | interface ImportMetaEnv { |
| 4 | readonly OPENAI_API_KEY: string |
| 5 | readonly HTTPS_PROXY: string |
| 6 | readonly OPENAI_API_BASE_URL: string |
| 7 | readonly HEAD_SCRIPTS: string |
| 8 | readonly PUBLIC_SECRET_KEY: string |
| 9 | readonly SITE_PASSWORD: string |
| 10 | readonly OPENAI_API_MODEL: string |
| 11 | readonly PUBLIC_MAX_HISTORY_MESSAGES: string |
| 12 | } |
| 13 | |
| 14 | interface ImportMeta { |
| 15 | readonly env: ImportMetaEnv |
nothing calls this directly
no outgoing calls
no test coverage detected