File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
src/backend/sql_agents/helpers Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1- import json
1+ """Module to manage the SQL agents for migration."""
2+
23import logging
34
45from semantic_kernel .agents import AzureAIAgent # pylint: disable=E0611
Original file line number Diff line number Diff line change 1- """Manages all agent communication and selection strategies for the SQL agents."""
1+ """Manages all agent communication and chat strategies for the SQL agents."""
22
33from semantic_kernel .agents import AgentGroupChat # pylint: disable=E0611
4- from semantic_kernel .agents .azure_ai .azure_ai_agent import AzureAIAgent
54from semantic_kernel .agents .strategies import (
65 SequentialSelectionStrategy ,
76 TerminationStrategy ,
87)
98
10- from sql_agents .fixer .response import FixerResponse
119from sql_agents .helpers .models import AgentType
1210from sql_agents .migrator .response import MigratorResponse
13- from sql_agents .semantic_verifier .response import SemanticVerifierResponse
14- from sql_agents .syntax_checker .response import SyntaxCheckerResponse
1511
1612
1713class CommsManager :
You can’t perform that action at this time.
0 commit comments