Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
46b4e82
Refactor code structure for improved readability and maintainability
Dhanushree-Microsoft May 21, 2026
4e0a59a
refactor: remove ImportError handling for agent_framework imports
Dhanushree-Microsoft May 21, 2026
b6001e8
refactor: update Message stubs for consistency and clarity in tests
Dhanushree-Microsoft May 21, 2026
64c78f4
refactor: simplify client import handling in AgentFrameworkHelper
Dhanushree-Microsoft May 21, 2026
7e514c5
refactor: update exception handling in client creation tests to use I…
Dhanushree-Microsoft May 21, 2026
aab94b9
refactor: normalize executor_id handling in MigrationProcessor for im…
Dhanushree-Microsoft May 21, 2026
913bffa
refactor: streamline WorkflowEvent handling in GroupChatOrchestrator …
Dhanushree-Microsoft May 21, 2026
f64adcd
refactor: enhance AzureOpenAIResponseClientWithRetry for legacy param…
Dhanushree-Microsoft May 21, 2026
0ad41f1
code quality issue
Priyanka-Microsoft Jun 2, 2026
26f584c
chore: update werkzeug to 3.1.6 and add idna 3.15 to dependencies
Dhanushree-Microsoft Jun 2, 2026
05cc25d
Merge pull request #267 from microsoft/cm-dm0206
Roopan-Microsoft Jun 3, 2026
8371c22
fix: check credential value instead of key presence
Dhanushree-Microsoft Jun 4, 2026
1033890
fix: check credential value instead of key presence
Dhanushree-Microsoft Jun 4, 2026
359ed58
fix: resolve merge conflicts with dev branch
Jun 4, 2026
d86c63e
fix: address review comments - type annotations, test cleanup, and co…
Jun 4, 2026
d60d5b1
fix: use contents= for Message construction in agent-framework 1.3.0
Jun 4, 2026
cba537e
fix: add setup_module to prevent test ordering issues with Message patch
Jun 4, 2026
271fc27
fix: assert contents instead of text in input observer test
Jun 4, 2026
75b3e64
fix: set both text and contents on Message, restore copyright header
Jun 4, 2026
ed3d29c
fix: remove unused modified_count variable (F841)
Dhanushree-Microsoft Jun 4, 2026
d7055f2
fix: remove unused Agent import (F401)
Dhanushree-Microsoft Jun 4, 2026
3968aed
fix: Refactor code structure for improved readability and maintainabi…
Avijit-Microsoft Jun 4, 2026
ebbba82
fix: remove unused WorkflowEvent import and restore 'invalid content'…
Dhanushree-Microsoft Jun 5, 2026
9fd191d
Merge pull request #275 from microsoft/fix/restore-retry-and-remove-u…
Roopan-Microsoft Jun 5, 2026
a953ae1
Merge pull request #266 from microsoft/feature/code-quality-issues
Roopan-Microsoft Jun 5, 2026
7e6647b
fix: update step names for Docker image builds in workflow
Vamshi-Microsoft Jun 9, 2026
32cac9f
Merge pull request #276 from microsoft/pls-update-stepnames
Roopan-Microsoft Jun 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
echo "DATE_TAG=${DATE_TAG}" >> $GITHUB_ENV
echo "Base tag: $BASE_TAG, Date tag: $DATE_TAG"

- name: Build and Push ContentProcessorAPI Docker image
- name: Build and Push Backend API Docker image
uses: docker/build-push-action@v7
with:
context: ./src/backend-api
Expand All @@ -97,7 +97,7 @@ jobs:
${{ steps.registry.outputs.ext_registry }}/backend-api:${{ env.BASE_TAG }}
${{ steps.registry.outputs.ext_registry }}/backend-api:${{ env.DATE_TAG }}

- name: Build and Push ContentProcessor Docker image
- name: Build and Push Processor Docker image
uses: docker/build-push-action@v7
with:
context: ./src/processor
Expand All @@ -108,7 +108,7 @@ jobs:
${{ steps.registry.outputs.ext_registry }}/processor:${{ env.BASE_TAG }}
${{ steps.registry.outputs.ext_registry }}/processor:${{ env.DATE_TAG }}

- name: Build and Push ContentProcessorWeb Docker image
- name: Build and Push Frontend Docker image
uses: docker/build-push-action@v7
with:
context: ./src/frontend
Expand Down
2 changes: 1 addition & 1 deletion infra/vscode_web/endpoint-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
azure-ai-projects==1.0.0b12
azure-ai-projects==2.1.0
azure-identity==1.20.0
ansible-core~=2.17.0
2 changes: 1 addition & 1 deletion infra/vscode_web/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
azure-ai-projects==1.0.0b12
azure-ai-projects==2.1.0
azure-identity==1.20.0
ansible-core~=2.17.0
3 changes: 2 additions & 1 deletion src/backend-api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ override-dependencies = [
"azure-core==1.38.0",
"urllib3==2.7.0",
"requests==2.33.0",
"werkzeug==3.1.4",
"werkzeug==3.1.6",
"pygments==2.20.0",
"black==26.3.1",
"cryptography==46.0.7",
"pyjwt==2.12.0",
"pyopenssl==26.0.0",
"idna==3.15",
]
1 change: 0 additions & 1 deletion src/backend-api/src/tests/base/test_sk_logic_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import importlib
import sys
import types
from typing import Type
from unittest.mock import MagicMock

import pytest
Expand Down
15 changes: 8 additions & 7 deletions src/backend-api/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/frontend/src/components/batchHistoryPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect, useRef } from "react";

import { useDispatch, useSelector } from 'react-redux';
import { useDispatch } from 'react-redux';
import { Card, Spinner, Tooltip } from "@fluentui/react-components";
import { useNavigate } from "react-router-dom";
import ConfirmationDialog from "../commonComponents/ConfirmationDialog/confirmationDialogue";
Expand Down
5 changes: 3 additions & 2 deletions src/processor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agent-framework==1.0.0b260107",
"agent-framework==1.3.0",
"aiohttp==3.13.5",
"art==6.5",
"azure-ai-agents==1.2.0b5",
"azure-ai-agents==1.2.0b6",
"azure-ai-inference==1.0.0b9",
"azure-ai-projects==2.1.0",
"azure-appconfiguration==1.8.0",
Expand Down Expand Up @@ -62,4 +62,5 @@ prerelease = "allow"
override-dependencies = [
"urllib3==2.7.0",
"authlib==1.7.1",
"idna==3.15",
]
Loading
Loading