12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
export const OMO_INTERNAL_INITIATOR_MARKER = "<!-- OMO_INTERNAL_INITIATOR -->"
|
|
|
|
export function createInternalAgentTextPart(text: string): {
|
|
type: "text"
|
|
text: string
|
|
} {
|
|
return {
|
|
type: "text",
|
|
text: `${text}\n${OMO_INTERNAL_INITIATOR_MARKER}`,
|
|
}
|
|
}
|