Skip to content

Commit

Permalink
server: tests: add new tokens regex on windows generated following ne…
Browse files Browse the repository at this point in the history
…w repeat penalties default changed in (#6127)
  • Loading branch information
phymbert committed Mar 20, 2024
1 parent 09dd23d commit 53dbba1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/server/tests/features/server.feature
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ Feature: llama.cpp server
And metric llamacpp:tokens_predicted is <n_predicted>

Examples: Prompts
| prompt | n_predict | re_content | n_prompt | n_predicted | truncated |
| I believe the meaning of life is | 8 | (read\|going)+ | 18 | 8 | not |
| Write a joke about AI from a very long prompt which will not be truncated | 256 | (princesses\|everyone\|kids)+ | 46 | 64 | not |
| prompt | n_predict | re_content | n_prompt | n_predicted | truncated |
| I believe the meaning of life is | 8 | (read\|going)+ | 18 | 8 | not |
| Write a joke about AI from a very long prompt which will not be truncated | 256 | (princesses\|everyone\|kids\|Anna)+ | 46 | 64 | not |

Scenario: Completion prompt truncated
Given a prompt:
Expand Down

0 comments on commit 53dbba1

Please sign in to comment.