Scenario Outline: consistent results with same seed
Given <n_slots> slots
+ And 0.0 temperature
Then the server is starting
Then the server is healthy
Scenario Outline: different results with different seed
Given <n_slots> slots
+ And 1.0 temperature
Then the server is starting
Then the server is healthy
case 'ready' | 'idle':
await wait_for_health_status(context, context.base_url, 200, 'ok',
- timeout=10,
+ timeout=30,
params={'fail_on_no_slot': 0, 'include_slots': 0},
slots_idle=context.n_slots,
slots_processing=0,
"cache_prompt": cache_prompt,
"id_slot": id_slot,
"seed": seed if seed is not None else 42,
- "temperature": temperature if temperature is not None else "0.8f",
+ "temperature": temperature if temperature is not None else 0.8,
"n_probs": 2,
},
headers=headers,