Sample session data for testing.
()
| 13 | |
| 14 | @pytest.fixture |
| 15 | def sample_data(): |
| 16 | """Sample session data for testing.""" |
| 17 | return SessionData( |
| 18 | metadata=SessionMetadata( |
| 19 | session_id="test-abc123", |
| 20 | provider="openai", |
| 21 | model="gpt-4", |
| 22 | ), |
| 23 | messages=[ |
| 24 | {"role": "system", "content": "You are helpful."}, |
| 25 | {"role": "user", "content": "Hello"}, |
| 26 | {"role": "assistant", "content": "Hi there!"}, |
| 27 | ], |
| 28 | ) |
| 29 | |
| 30 | |
| 31 | class TestSessionStore: |
nothing calls this directly
no test coverage detected