Skip to content

Commit c586cc8

Browse files
committed
bring the latest from workinf branch
2 parents d06acd3 + 23fa94b commit c586cc8

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/azure-dev.yml renamed to .github/workflows/azure-dev-validation.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: Azure Template Validation
22
on:
3+
push:
4+
branches:
5+
- dev
6+
- main
7+
- feature/azd-semantickernel
38
workflow_dispatch:
49

510
permissions:

src/backend/agents/base_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
Step,
2222
StepStatus,
2323
)
24+
2425
from src.backend.event_utils import track_event_if_configured
2526

2627

src/backend/tests/test_group_chat_manager_integration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ async def initialize_group_chat_manager(self):
222222

223223
# Create agent dictionary for the group chat manager
224224
available_agents = {
225-
"PlannerAgent": planner_agent,
226-
"HumanAgent": human_agent,
227-
"GenericAgent": generic_agent
225+
"planner_agent": planner_agent,
226+
"human_agent": human_agent,
227+
"generic_agent": generic_agent
228228
}
229229

230230
# Create the group chat manager

0 commit comments

Comments
 (0)