| 19 | type ApiKeySource = "config" | "env"; |
| 20 | |
| 21 | export interface ApiKeyResolution { |
| 22 | key: string; |
| 23 | source: ApiKeySource; |
| 24 | envFile?: string; |
| 25 | warning?: string; |
| 26 | } |
| 27 | |
| 28 | function configPath(): string { |
| 29 | return path.join(process.env.HOME || "~", ".gstack", "openai.json"); |
nothing calls this directly
no outgoing calls
no test coverage detected