()
| 20 | }; |
| 21 | |
| 22 | export const chatRoot = async () => { |
| 23 | return join(await homeDir(), '.chatgpt'); |
| 24 | }; |
| 25 | |
| 26 | export const chatModelPath = async (): Promise<string> => { |
| 27 | return join(await chatRoot(), CHAT_MODEL_JSON); |
no outgoing calls
no test coverage detected