server : fix tests regex patterns on M2 Ultra

This commit is contained in:
Georgi Gerganov 2024-02-24 15:24:45 +02:00
parent af1ba7ea88
commit fb36d874ce
No known key found for this signature in database
GPG key ID: 449E073F9DC10735

View file

@ -27,9 +27,9 @@ Feature: llama.cpp server
Then <n_predicted> tokens are predicted matching <re_content>
Examples: Prompts
| prompt | n_predict | re_content | n_predicted |
| I believe the meaning of life is | 8 | read | 8 |
| Write a joke about AI | 64 | (park<or>friends<or>scared)+ | 32 |
| prompt | n_predict | re_content | n_predicted |
| I believe the meaning of life is | 8 | (read<or>going)+ | 8 |
| Write a joke about AI | 64 | (park<or>friends<or>scared<or>always)+ | 32 |
Scenario Outline: OAI Compatibility
Given a model <model>