()
| 24 | }; |
| 25 | |
| 26 | export const chatModelPath = async (): Promise<string> => { |
| 27 | return join(await chatRoot(), CHAT_MODEL_JSON); |
| 28 | }; |
| 29 | |
| 30 | export const chatPromptsPath = async (): Promise<string> => { |
| 31 | return join(await chatRoot(), CHAT_PROMPTS_CSV); |
nothing calls this directly
no test coverage detected