Skip to content

Commit 11580d7

Browse files
fix for incosistent steps of task
1 parent fbfcdf1 commit 11580d7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/backend/kernel_agents/agent_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Import the new AppConfig instance
88
from app_config import config
9-
from azure.ai.projects.models import (ResponseFormatJsonSchema,
9+
from azure.ai.agents.models import (ResponseFormatJsonSchema,
1010
ResponseFormatJsonSchemaType)
1111
from context.cosmos_memory_kernel import CosmosMemoryContext
1212
from kernel_agents.agent_base import BaseAgent

src/backend/kernel_agents/planner_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import uuid
44
from typing import Any, Dict, List, Optional, Tuple
55

6-
from azure.ai.projects.models import (ResponseFormatJsonSchema,
6+
from azure.ai.agents.models import (ResponseFormatJsonSchema,
77
ResponseFormatJsonSchemaType)
88
from context.cosmos_memory_kernel import CosmosMemoryContext
99
from event_utils import track_event_if_configured

src/backend/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ opentelemetry-instrumentation-openai
1515
opentelemetry-exporter-otlp-proto-http
1616

1717
semantic-kernel[azure]==1.28.1
18-
azure-ai-projects==1.0.0b10
18+
azure-ai-projects==1.0.0b10
19+
azure-ai-agents==1.1.0b2
1920
openai
2021
azure-ai-inference==1.0.0b9
2122
azure-search-documents

0 commit comments

Comments
 (0)