-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.json
42 lines (42 loc) · 1.14 KB
/
commands.json
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
35
36
37
38
39
40
41
42
{
"commands": [
{
"name": "translate",
"description": "Translate text from one language to another.",
"example": {
"text": "Hello, how are you?",
"source_language": "en",
"target_language": "es"
}
},
{
"name": "summarize",
"description": "Summarize a given text.",
"example": {
"text": "The quick brown fox jumps over the lazy dog. This is a very short story about a fox and a dog. The end."
}
},
{
"name": "generate_code",
"description": "Generate code in a specific programming language.",
"example": {
"language": "python",
"prompt": "Write a function that prints 'Hello, World!'"
}
},
{
"name": "write_story",
"description": "Write a creative story based on a given prompt.",
"example": {
"prompt": "A young girl discovers a magical portal in her backyard."
}
},
{
"name": "answer_question",
"description": "Answer a question in a comprehensive and informative way.",
"example": {
"question": "What is the capital of France?"
}
}
]
}