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