Skip to content

Commit c45a9ea

Browse files
committed
nit: fixed import order
1 parent 18b9a10 commit c45a9ea

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/endpoints/streaming_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@
4949
from configuration import configuration
5050
from constants import (
5151
INTERRUPTED_RESPONSE_MESSAGE,
52-
TOPIC_SUMMARY_INTERRUPT_TIMEOUT_SECONDS,
5352
LLM_TOKEN_EVENT,
5453
LLM_TOOL_CALL_EVENT,
5554
LLM_TOOL_RESULT_EVENT,
5655
LLM_TURN_COMPLETE_EVENT,
5756
MEDIA_TYPE_EVENT_STREAM,
5857
MEDIA_TYPE_JSON,
5958
MEDIA_TYPE_TEXT,
59+
TOPIC_SUMMARY_INTERRUPT_TIMEOUT_SECONDS,
6060
)
6161
from log import get_logger
6262
from models.config import Action

src/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
import version
1616
from a2a_storage import A2AStorageFactory
1717
from app import routers
18-
from app.endpoints.streaming_query import shutdown_background_topic_summary_tasks
1918
from app.database import create_tables, initialize_database
19+
from app.endpoints.streaming_query import shutdown_background_topic_summary_tasks
2020
from authorization.azure_token_manager import AzureEntraIDManager
2121
from client import AsyncLlamaStackClientHolder
2222
from configuration import configuration

0 commit comments

Comments
 (0)