Spaces:
Running
Running
| export function buildPackageQuestionPrompt(args: { | |
| packageRef: string; | |
| label: string; | |
| excerpt: string; | |
| }) { | |
| const { packageRef, label, excerpt } = args; | |
| return `@${packageRef} ask Explain this ${label}:\n"${excerpt.trim()}"`; | |
| } | |