| 6 | * the prompt in repair attempts). TypeChat currently doesn't use the "system" role. |
| 7 | */ |
| 8 | export interface PromptSection { |
| 9 | /** |
| 10 | * Specifies the role of this section. |
| 11 | */ |
| 12 | role: "system" | "user" | "assistant"; |
| 13 | /** |
| 14 | * Specifies the content of this section. |
| 15 | */ |
| 16 | content: PromptContent; |
| 17 | } |
| 18 | |
| 19 | export type PromptContent = |
| 20 | | string |
nothing calls this directly
no outgoing calls
no test coverage detected