mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-12-19 03:42:22 -06:00
Move public_utils to utils in tests
Renamed conflicting utils.py as testing_utils.py PiperOrigin-RevId: 761715808
This commit is contained in:
committed by
Copybara-Service
parent
09cb128cf9
commit
41b33d4a0a
@@ -18,7 +18,7 @@ from google.adk.models import LlmResponse
|
||||
from google.genai import types
|
||||
import pytest
|
||||
|
||||
from .. import utils
|
||||
from .. import testing_utils
|
||||
|
||||
|
||||
def test_streaming():
|
||||
@@ -26,7 +26,7 @@ def test_streaming():
|
||||
turn_complete=True,
|
||||
)
|
||||
|
||||
mock_model = utils.MockModel.create([response1])
|
||||
mock_model = testing_utils.MockModel.create([response1])
|
||||
|
||||
root_agent = Agent(
|
||||
name='root_agent',
|
||||
@@ -34,7 +34,7 @@ def test_streaming():
|
||||
tools=[],
|
||||
)
|
||||
|
||||
runner = utils.InMemoryRunner(
|
||||
runner = testing_utils.InMemoryRunner(
|
||||
root_agent=root_agent, response_modalities=['AUDIO']
|
||||
)
|
||||
live_request_queue = LiveRequestQueue()
|
||||
|
||||
Reference in New Issue
Block a user