feat: vibe code done
This commit is contained in:
4
tests/codegen/test1.json
Normal file
4
tests/codegen/test1.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"prompt": "Write a Python function that calculates the factorial of a number using recursion.",
|
||||
"expected": "def factorial(n):\\n if n == 0 or n == 1:\\n return 1\\n else:\\n return n * factorial(n-1)"
|
||||
}
|
||||
4
tests/summarization/test1.json
Normal file
4
tests/summarization/test1.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"prompt": "Summarize the following text in 1-2 sentences: 'The quick brown fox jumps over the lazy dog. The dog, surprised by the fox's agility, barks loudly. The fox continues running without looking back.'",
|
||||
"expected": "A quick fox jumps over a lazy dog, surprising it. The fox keeps running while the dog barks."
|
||||
}
|
||||
4
tests/translation/test1.json
Normal file
4
tests/translation/test1.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"prompt": "Translate the following English text to Russian: 'Hello, how are you today?'",
|
||||
"expected": "Привет, как дела сегодня?"
|
||||
}
|
||||
4
tests/translation/test2.json
Normal file
4
tests/translation/test2.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"prompt": "Translate the following Russian text to English: 'Как ваши дела?'",
|
||||
"expected": "How are you?"
|
||||
}
|
||||
Reference in New Issue
Block a user