1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| const translation = {
| title: 'Retrieval Test',
| settingTitle: 'Retrieval Setting',
| desc: 'Test the hitting effect of the Knowledge based on the given query text.',
| dateTimeFormat: 'MM/DD/YYYY hh:mm A',
| records: 'Records',
| table: {
| header: {
| source: 'Source',
| text: 'Text',
| time: 'Time',
| },
| },
| input: {
| title: 'Source text',
| placeholder: 'Please enter a text, a short declarative sentence is recommended.',
| countWarning: 'Up to 200 characters.',
| indexWarning: 'High quality Knowledge only.',
| testing: 'Test',
| },
| hit: {
| title: '{{num}} Retrieved Chunks',
| emptyTip: 'Retrieval Testing results will show here',
| },
| noRecentTip: 'No recent query results here',
| viewChart: 'View VECTOR CHART',
| viewDetail: 'View Detail',
| chunkDetail: 'Chunk Detail',
| hitChunks: 'Hit {{num}} child chunks',
| open: 'Open',
| keyword: 'Keywords',
| }
|
| export default translation
|
|