(orgInfo: { name: string; description: string })
| 281 | } |
| 282 | |
| 283 | export function getIntroText(orgInfo: { name: string; description: string }) { |
| 284 | return `You are ${orgInfo.name || "a"} chatbot AI${ |
| 285 | orgInfo.description ? ". " + orgInfo.description : "" |
| 286 | }`; |
| 287 | } |
| 288 | |
| 289 | function systemPromptWithActions( |
| 290 | userDescriptionSection: string, |
no outgoing calls
no test coverage detected