mirror of
https://github.com/ollama/ollama.git
synced 2026-04-19 12:54:19 +02:00
Adds a new test file to verify model forward pass behavior through JSON-specified test cases. The framework loads model files (.gguf) and their corresponding test specifications to validate expected outputs using greedy sampling.
8 lines
228 B
JSON
8 lines
228 B
JSON
{
|
|
"prompt": "<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n<|im_start|>user\nhi<|im_end|>\n<|im_start|>assistant\n",
|
|
"output_contains_one": [
|
|
"Hello",
|
|
"Hi"
|
|
]
|
|
}
|