()
| 40 | }; |
| 41 | |
| 42 | const isOpenAiApiKeySet = () => { |
| 43 | if (process.env.NODE_ENV === "production") { |
| 44 | return process.env.CB_OPENAI_API_KEY; |
| 45 | } else { |
| 46 | return process.env.CB_OPENAI_API_KEY_DEV; |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | module.exports = (app) => { |
| 51 | // Main orchestration endpoint - handles conversation creation/loading automatically |