package main
|
|
const (
|
COMPARISION_TEMPLATE_SYSTEM = `
|
The user will input two texts where the first text begins at "TEXT ONE:" and the
|
second text bagins at "TEXT TWO:". Compare the two texts for conceptual similarity
|
and rate them on a scale of 1 to 10 where 1 is not at all similar and 10 is almost
|
identical and output only the number.`
|
COMPARISON_TEMPLATE = `
|
TEXT ONE:
|
%s
|
|
TEXT TWO:
|
%s
|
`
|
|
TRANSLATE_TEMPLATE = `
|
Translate all input text from %s to %s, return aboslutely no other text except
|
the translation.
|
`
|
)
|