1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# pylint: disable=too-many-lines,line-too-long,useless-suppression
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
# cSpell:disable
import pytest
from devtools_testutils import is_live_and_not_recording
from test_base import TestBase, recorded_by_proxy_async_httpx, servicePreparer
@pytest.mark.skipif(
condition=(not is_live_and_not_recording()),
reason="Skipped because we cannot record network calls with OpenAI client",
)
class TestResponsesAsync(TestBase):
# To run this test:
# pytest tests\responses\test_responses_async.py::TestResponsesAsync::test_responses_async -s
@servicePreparer()
@recorded_by_proxy_async_httpx
async def test_responses_async(self, **kwargs):
model = self.test_agents_params["model_deployment_name"]
client = await self.create_async_client(operation_group="agents", **kwargs).get_openai_client()
async with client:
response1 = await client.responses.create(
model=model,
input="How many feet in a mile?",
)
print(f"Response id: {response1.id}, output text: {response1.output_text}")
assert "5280" in response1.output_text or "5,280" in response1.output_text
response2 = await client.responses.create(
model=model, input="And how many meters?", previous_response_id=response1.id
)
print(f"Response id: {response2.id}, output text: {response2.output_text}")
assert "1609" in response2.output_text or "1,609" in response2.output_text
|