Goprompt.go -rw-r--r-- 520 B
1package main
2
3const (
4 COMPARISION_TEMPLATE_SYSTEM = `
5The user will input two texts where the first text begins at "TEXT ONE:" and the
6second text bagins at "TEXT TWO:". Compare the two texts for conceptual similarity
7and rate them on a scale of 1 to 10 where 1 is not at all similar and 10 is almost
8identical and output only the number.`
9 COMPARISON_TEMPLATE = `
10TEXT ONE:
11%s
12
13TEXT TWO:
14%s
15`
16
17TRANSLATE_TEMPLATE = `
18Translate all input text from %s to %s, return aboslutely no other text except
19the translation.
20`
21)