(try) fix test
This commit is contained in:
parent
24329aac1e
commit
31a2d4a4a8
2 changed files with 3 additions and 3 deletions
|
@ -52,8 +52,8 @@ Feature: Parallel
|
|||
Then all prompts are predicted with <n_predict> tokens
|
||||
Examples:
|
||||
| streaming | n_predict |
|
||||
| disabled | 128 |
|
||||
| enabled | 64 |
|
||||
| disabled | 200 |
|
||||
| enabled | 200 |
|
||||
|
||||
Scenario Outline: Multi users OAI completions compatibility no v1
|
||||
Given a system prompt You are a writer.
|
||||
|
|
|
@ -818,7 +818,7 @@ async def concurrent_requests(context, f_completion, *args, **kwargs):
|
|||
for prompt_no in range(context.n_prompts):
|
||||
shifted_args = [context.prompts.pop(), seeds[prompt_no], *args]
|
||||
context.concurrent_tasks.append(asyncio.create_task(f_completion(*shifted_args, **kwargs)))
|
||||
await asyncio.sleep(0.1)
|
||||
await asyncio.sleep(0.01)
|
||||
|
||||
|
||||
@step('the slot {slot_id:d} is saved with filename "{filename}"')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue