Skip to content

Commit f2994a4

Browse files
committed
Rename app_kernel.py to app.py and update imports
Renamed src/backend/app_kernel.py to src/backend/app.py. Updated import paths to reference 'af' modules instead of 'v3' and 'messages_af' instead of 'messages_kernel' to reflect new module structure.
1 parent c67cd4e commit f2994a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/app_kernel.py renamed to src/backend/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66

77
from azure.monitor.opentelemetry import configure_azure_monitor
88
from common.config.app_config import config
9-
from common.models.messages_kernel import UserLanguage
9+
from common.models.messages_af import UserLanguage
1010

1111
# FastAPI imports
1212
from fastapi import FastAPI, Request
1313
from fastapi.middleware.cors import CORSMiddleware
1414

1515
# Local imports
1616
from middleware.health_check import HealthCheckMiddleware
17-
from v3.api.router import app_v3
17+
from af.api.router import app_v3
1818

1919
# Azure monitoring
2020

2121
# Semantic Kernel imports
22-
from v3.config.agent_registry import agent_registry
22+
from af.config.agent_registry import agent_registry
2323

2424

2525
@asynccontextmanager

0 commit comments

Comments
 (0)