add 2 more test

This commit is contained in:
Mery-Sanz 2025-04-09 15:54:58 +02:00
parent 05fab61056
commit f88365b11d
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ import asyncio
import pytest
from inline_snapshot import snapshot
from agents import Agent, RunConfig, Runner, trace
from cai.sdk.agents import Agent, RunConfig, Runner, trace
from .fake_model import FakeModel
from .test_responses import get_text_message

View File

@ -21,7 +21,7 @@ from openai.types.responses.response_computer_tool_call import (
ResponseComputerToolCall,
)
from agents import (
from cai.sdk.agents import (
Agent,
AgentHooks,
AsyncComputer,
@ -31,8 +31,8 @@ from agents import (
RunContextWrapper,
RunHooks,
)
from agents._run_impl import ComputerAction, ToolRunComputerAction
from agents.items import ToolCallOutputItem
from cai.sdk.agents._run_impl import ComputerAction, ToolRunComputerAction
from cai.sdk.agents.items import ToolCallOutputItem
class LoggingComputer(Computer):