()
| 28 | |
| 29 | @pytest.fixture |
| 30 | def llm_request(): |
| 31 | return LlmRequest( |
| 32 | model="gemini-2.5-flash", |
| 33 | contents=[Content(role="user", parts=[Part.from_text(text="Hello")])], |
| 34 | config=types.GenerateContentConfig( |
| 35 | temperature=0.1, |
| 36 | response_modalities=[types.Modality.TEXT], |
| 37 | system_instruction="You are a helpful assistant", |
| 38 | ), |
| 39 | ) |
| 40 | |
| 41 | |
| 42 | @pytest.mark.asyncio |