Skip to content

Commit f61045e

Browse files
build: bump semantic-kernel from 1.0.4 to 1.1.1 (#1057)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Adam Dougal <[email protected]>
1 parent d811417 commit f61045e

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

code/backend/batch/utilities/orchestrator/semantic_kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from semantic_kernel.connectors.ai.function_call_behavior import FunctionCallBehavior
66
from semantic_kernel.contents import ChatHistory
77
from semantic_kernel.contents.chat_message_content import ChatMessageContent
8-
from semantic_kernel.contents.finish_reason import FinishReason
8+
from semantic_kernel.contents.utils.finish_reason import FinishReason
99

1010
from ..common.answer import Answer
1111
from ..helpers.llm_helper import LLMHelper

code/tests/utilities/orchestrator/test_semantic_kernel.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
from unittest.mock import ANY, AsyncMock, MagicMock, call, patch
22

33
import pytest
4-
from backend.batch.utilities.common.answer import Answer
5-
from backend.batch.utilities.orchestrator.semantic_kernel import (
6-
SemanticKernelOrchestrator,
7-
)
8-
from backend.batch.utilities.parser.output_parser_tool import OutputParserTool
94
from semantic_kernel import Kernel
105
from semantic_kernel.connectors.ai.open_ai import AzureChatCompletion
116
from semantic_kernel.connectors.ai.function_call_behavior import EnabledFunctions
127
from semantic_kernel.connectors.ai.open_ai.prompt_execution_settings.azure_chat_prompt_execution_settings import (
138
AzureChatPromptExecutionSettings,
149
)
15-
from semantic_kernel.contents.author_role import AuthorRole
10+
from semantic_kernel.contents.utils.author_role import AuthorRole
1611
from semantic_kernel.contents.chat_message_content import ChatMessageContent
17-
from semantic_kernel.contents.finish_reason import FinishReason
12+
from semantic_kernel.contents.utils.finish_reason import FinishReason
1813
from semantic_kernel.contents.function_call_content import FunctionCallContent
1914

15+
from backend.batch.utilities.common.answer import Answer
16+
from backend.batch.utilities.orchestrator.semantic_kernel import (
17+
SemanticKernelOrchestrator,
18+
)
19+
from backend.batch.utilities.parser.output_parser_tool import OutputParserTool
20+
21+
2022
chat_message_default_content = ChatMessageContent(
2123
content="mock-response",
2224
role=AuthorRole.ASSISTANT,

poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ opentelemetry-instrumentation-httpx = "^0.46b0"
3737
pillow = "10.3.0"
3838
azure-mgmt-cognitiveservices = "^13.5.0"
3939
jsonschema = "^4.22.0"
40-
semantic-kernel = {version = "1.0.4", python = "<3.13"}
40+
semantic-kernel = {version = "1.1.1", python = "<3.13"}
4141
azure-ai-ml = "^1.16.0"
4242

4343
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)