openai/openai-python
Publicmirrored fromhttps://github.com/openai/openai-pythonAvailable
tests/lib/responses/test_responses.py
40lines · modecode
| 1 | from __future__ import annotations |
| 2 | |
| 3 | from typing_extensions import TypeVar |
| 4 | |
| 5 | import pytest |
| 6 | from respx import MockRouter |
| 7 | from inline_snapshot import snapshot |
| 8 | |
| 9 | from openai import OpenAI |
| 10 | |
| 11 | from ...conftest import base_url |
| 12 | from ..snapshots import make_snapshot_request |
| 13 | |
| 14 | _T = TypeVar("_T") |
| 15 | |
| 16 | # all the snapshots in this file are auto-generated from the live API |
| 17 | # |
| 18 | # you can update them with |
| 19 | # |
| 20 | # `OPENAI_LIVE=1 pytest --inline-snapshot=fix -p no:xdist -o addopts=""` |
| 21 | |
| 22 | |
| 23 | @pytest.mark.respx(base_url=base_url) |
| 24 | def test_output_text(client: OpenAI, respx_mock: MockRouter) -> None: |
| 25 | response = make_snapshot_request( |
| 26 | lambda c: c.responses.create( |
| 27 | model="gpt-4o-mini", |
| 28 | input="What's the weather like in SF?", |
| 29 | ), |
| 30 | content_snapshot=snapshot( |
| 31 | '{"id": "resp_689a0b2545288193953c892439b42e2800b2e36c65a1fd4b", "object": "response", "created_at": 1754925861, "status": "completed", "background": false, "error": null, "incomplete_details": null, "instructions": null, "max_output_tokens": null, "max_tool_calls": null, "model": "gpt-4o-mini-2024-07-18", "output": [{"id": "msg_689a0b2637b08193ac478e568f49e3f900b2e36c65a1fd4b", "type": "message", "status": "completed", "content": [{"type": "output_text", "annotations": [], "logprobs": [], "text": "I can\'t provide real-time updates, but you can easily check the current weather in San Francisco using a weather website or app. Typically, San Francisco has cool, foggy summers and mild winters, so it\'s good to be prepared for variable weather!"}], "role": "assistant"}], "parallel_tool_calls": true, "previous_response_id": null, "prompt_cache_key": null, "reasoning": {"effort": null, "summary": null}, "safety_identifier": null, "service_tier": "default", "store": true, "temperature": 1.0, "text": {"format": {"type": "text"}, "verbosity": "medium"}, "tool_choice": "auto", "tools": [], "top_logprobs": 0, "top_p": 1.0, "truncation": "disabled", "usage": {"input_tokens": 14, "input_tokens_details": {"cached_tokens": 0}, "output_tokens": 50, "output_tokens_details": {"reasoning_tokens": 0}, "total_tokens": 64}, "user": null, "metadata": {}}' |
| 32 | ), |
| 33 | path="/responses", |
| 34 | mock_client=client, |
| 35 | respx_mock=respx_mock, |
| 36 | ) |
| 37 | |
| 38 | assert response.output_text == snapshot( |
| 39 | "I can't provide real-time updates, but you can easily check the current weather in San Francisco using a weather website or app. Typically, San Francisco has cool, foggy summers and mild winters, so it's good to be prepared for variable weather!" |
| 40 | ) |
| 41 | |