Evan Mattson and GitHub
b66619a544
Python: Add Handoff orchestration pattern support ( #1469 )
...
* Add Handoff orchestration pattern support
* PR feedback
* Use AOAI client in samples
* Adjust to tool
* Handoff to sub-agent via ai function
* PR feedback
* More cleanup
* Improvements
* PR feedback cleanup
* Add handoff migration sample.
* Remove type ignore
* fix markdown link formatting
* Remove readme link for non-existent sample
dotnet-1.0.0-nightly-251022.1
2025-10-22 01:51:51 +00:00
4554de00ab
.NET: Sample on Worflows mixing Agents And Executors, showcasing best patte… ( #1562 )
...
* Sample on Worflows mixing Agents And Executors, showcasing best patterns which are reusable.
* Update dotnet/samples/GettingStarted/Workflows/README.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update dotnet/samples/GettingStarted/Workflows/_Foundational/07_MixedWorkflowAgentsAndExecutors/Program.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* minor fix
* fixed ambiguous signature due to framework changes.
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-21 23:41:59 +00:00
965cce0b50
.NET Workflows - Remove debug file ParseValue.yaml from workflow-samples ( #1608 )
...
* Initial plan
* Remove ParseValue.yaml debug file from workflow-samples
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
2025-10-21 21:33:13 +00:00
d7f422b92c
.NET: Use extension methods from A2A package for converting between MEAI & A2A model classes ( #1600 )
...
* use extension methods from A2A package for converting between MEAI and A2A model classes.
* Update dotnet/tests/Microsoft.Agents.AI.A2A.UnitTests/A2AAgentTests.cs
Co-authored-by: Stephen Toub <stoub@microsoft.com >
* remove unused using
---------
Co-authored-by: Stephen Toub <stoub@microsoft.com >
2025-10-21 17:59:27 +00:00
22d76e5780
.NET: Fix handoff function naming ( #1370 )
...
* Fix handoff function naming
We don't need the agent's name or a guid in the handoff name... we can just use simple numbering. There's a possibility that someone built an agent with a built-in function tool named "handoff_to_x"; if that turns out to be an issue, we could add back some longer bit of randomness.
* Update dotnet/src/Microsoft.Agents.AI.Workflows/Specialized/HandoffAgentExecutor.cs
---------
Co-authored-by: Chris <66376200+crickman@users.noreply.github.com >
2025-10-21 15:23:53 +00:00
731e3a7633
.NET Workflows - Fix ability of ParseValue action to process list/table types. ( #1577 )
...
* Initial plan
* Add test classes for extension methods
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Fix test issues and document bug in ExpandoObjectExtensions
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Address code review feedback - shorten Skip messages and add explanatory comments
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Replace Fields.ToDictionary with GetField calls and fix ExpandoObjectExtensions bug
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Update dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/DataValueExtensionsTests.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/DataValueExtensionsTests.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Remove unused using statement from DialogBaseExtensionsTests
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Add proper WrapWithBot tests using AdaptiveDialog and OnActivity
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Cleanup
* Better
* Better
* One more test
* Checkpoint
* Checkpoint
* Finally
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
dotnet-1.0.0-nightly-251021.1
2025-10-21 02:45:07 +00:00
Giles Odigwe and GitHub
e8a7d3b1b7
Python: Added Samples for HostedCodeInterpreterTool with files ( #1583 )
...
* code interpreter with files
* import fix
2025-10-21 01:37:53 +00:00
acfbc4bc3c
Bump vite from 7.1.5 to 7.1.11 in /python/packages/devui/frontend ( #1586 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.5 to 7.1.11.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.11/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.11
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Dibia <chuvidi2003@gmail.com >
2025-10-21 01:17:40 +00:00
Jacob Alber and GitHub
0ef4e739d5
refactor: [BREAKING] Remove generic Workflow<T> ( #1551 )
...
Remove input type checking in favour of explicit `.DescribeProtocolAsync()` flow. Also removes `.AsAgentAsync()` as the validation happens at workflow run time. This makes it easier to use Workflows with DI without resorting to async-over-sync.
2025-10-21 00:13:41 +00:00
Tao Chen and GitHub
7c1e3db846
.NET: AIAgentHostExecutor to use ToAgentRunResponse ( #1439 )
...
* AIAgentHostExecutor to use ToAgentRunResponse
* Only run agent in stream mode when emit event is true
2025-10-20 17:50:12 +00:00
083d0de3f3
Code clean up: Checkpoint and WorkflowBuilder ( #1557 )
...
Co-authored-by: Evan Mattson <35585003+moonbox3@users.noreply.github.com >
2025-10-20 16:34:06 +00:00
Dmytro Struk and GitHub
9c3f52566f
Python: Updated merge test jobs ( #1578 )
...
* Updated merge test jobs
* Small fix
2025-10-20 16:22:46 +00:00
c72455508b
.NET: Add comprehensive test classes for extension methods in Microsoft.Agents.AI.Workflows.Declarative ( #1555 )
...
* Initial plan
* Add test classes for extension methods
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Fix test issues and document bug in ExpandoObjectExtensions
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Address code review feedback - shorten Skip messages and add explanatory comments
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Replace Fields.ToDictionary with GetField calls and fix ExpandoObjectExtensions bug
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Update dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/DataValueExtensionsTests.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/DataValueExtensionsTests.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Remove unused using statement from DialogBaseExtensionsTests
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Add proper WrapWithBot tests using AdaptiveDialog and OnActivity
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Cleanup
* Better
* Better
* One more test
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
Co-authored-by: Chris Rickman <crickman@microsoft.com >
2025-10-20 15:21:46 +00:00
470cd109c0
Bump danielpalme/ReportGenerator-GitHub-Action from 5.4.16 to 5.4.17 ( #1418 )
...
Bumps [danielpalme/ReportGenerator-GitHub-Action](https://github.com/danielpalme/reportgenerator-github-action ) from 5.4.16 to 5.4.17.
- [Release notes](https://github.com/danielpalme/reportgenerator-github-action/releases )
- [Commits](https://github.com/danielpalme/reportgenerator-github-action/compare/5.4.16...5.4.17 )
---
updated-dependencies:
- dependency-name: danielpalme/ReportGenerator-GitHub-Action
dependency-version: 5.4.17
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dmytro Struk <13853051+dmytrostruk@users.noreply.github.com >
2025-10-20 15:18:05 +00:00
cf7890fdbe
Bump OpenTelemetry.Api from 1.12.0 to 1.13.1 ( #1514 )
...
---
updated-dependencies:
- dependency-name: OpenTelemetry.Api
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 15:17:37 +00:00
ec0a3206e2
Bump AWSSDK.Extensions.Bedrock.MEAI from 4.0.4 to 4.0.4.1 ( #1558 )
...
---
updated-dependencies:
- dependency-name: AWSSDK.Extensions.Bedrock.MEAI
dependency-version: 4.0.4.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 10:11:49 +00:00
7e18863296
Bump OllamaSharp from 5.4.7 to 5.4.8 ( #1559 )
...
---
updated-dependencies:
- dependency-name: OllamaSharp
dependency-version: 5.4.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 10:11:25 +00:00
7d6b59754f
Bump github/codeql-action from 3 to 4 ( #1417 )
...
Bumps [github/codeql-action](https://github.com/github/codeql-action ) from 3 to 4.
- [Release notes](https://github.com/github/codeql-action/releases )
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md )
- [Commits](https://github.com/github/codeql-action/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dotnet-1.0.0-nightly-251020.1
2025-10-19 20:02:41 +00:00
b67f0171b7
Bump astral-sh/setup-uv from 6 to 7 ( #1419 )
...
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv ) from 6 to 7.
- [Release notes](https://github.com/astral-sh/setup-uv/releases )
- [Commits](https://github.com/astral-sh/setup-uv/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dmytro Struk <13853051+dmytrostruk@users.noreply.github.com >
2025-10-19 20:00:46 +00:00
8f87328cf8
.NET: Add comprehensive unit tests for entity extraction in Declarative Workflows ( #1534 )
...
* Initial plan
* Add comprehensive unit tests for entity extraction
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
* Updated
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: crickman <66376200+crickman@users.noreply.github.com >
Co-authored-by: Chris Rickman <crickman@microsoft.com >
dotnet-1.0.0-nightly-251019.1
dotnet-1.0.0-nightly-251018.1
2025-10-17 17:24:35 +00:00
westey and GitHub
e7a9128138
Force source generation tests in .net core ( #1298 )
2025-10-17 14:58:50 +00:00
151efd2e80
Python: Remove deprecated add_agent() calls from workflow samples ( #1508 )
...
* Initial plan
* Remove add_agent calls from workflow samples
Co-authored-by: moonbox3 <35585003+moonbox3@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: moonbox3 <35585003+moonbox3@users.noreply.github.com >
dotnet-1.0.0-nightly-251017.1
2025-10-17 02:25:31 +00:00
2046f16cdb
.NET README - Declarative Workflows ( #1526 )
...
* Info
* Update dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/README.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/README.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Link
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-17 00:44:25 +00:00
Chris and GitHub
df776ae77b
.NET Workflows - Declarative updated for Question action ( #1532 )
...
* Updated
* Namespace
2025-10-17 00:44:19 +00:00
8c24a72107
Python: Updated package version ( #1528 )
...
* Updated package version
* Update python/CHANGELOG.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Updated metadata for Purview
* Updated test
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
python-1.0.0b251016
2025-10-16 22:32:25 +00:00
59da578902
Python: Add Purview Middleware ( #1142 )
...
* [Py Purview] Purview Python Initial Commit
* [Py Purview] Purview Python Minor Fixes
* [Py Purview] Purview Python Comment Fixesish
* [Py Purview] Purview Python Agent Middleware Done
* [Py Purview] Purview Python Agent Middleware Done
* [Py Purview] Purview Python Lint Errors
* [Py Purview] Purview Python Final Hopefully
* [Py Purview] Purview Python Final Hopefully
* [Py Purview] Purview Python Fix ReadMe
* [Py Purview] Purview Python Fix MyPy
* [Py Purview] Purview Python Minor Updates on comments
* [Py Purview] Purview Python Fix Build Error
---------
Co-authored-by: Dmytro Struk <13853051+dmytrostruk@users.noreply.github.com >
2025-10-16 21:46:04 +00:00
76ae0a62ac
Python: Agent Name Sanitization ( #1523 )
...
* a2a agent name sanitization
* fix
* small fix
---------
Co-authored-by: Dmytro Struk <13853051+dmytrostruk@users.noreply.github.com >
2025-10-16 20:33:25 +00:00
Jose Luis Latorre Millas and GitHub
85921eda68
.NET: Sample 06_subWorkflows to showcase the sub workflows (workflow composability) ( #1493 )
...
* Sample 06_subWorkflows ready.
* minor fix
dotnet-1.0.0-preview.251016.1
2025-10-16 18:11:43 +00:00
Mark Wallace and GitHub
7fb8bcf660
Version preview.251016.1 ( #1521 )
2025-10-16 17:17:29 +00:00
Stephen Toub and GitHub
3e59ac06b4
Remove unnecessary Microsoft.Net.Compilers.Toolset package ( #1448 )
2025-10-16 17:10:23 +00:00
021e3bab72
Bump AWSSDK.Extensions.Bedrock.MEAI from 4.0.3.6 to 4.0.4 ( #1512 )
...
---
updated-dependencies:
- dependency-name: AWSSDK.Extensions.Bedrock.MEAI
dependency-version: 4.0.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 17:10:03 +00:00
98726a9288
Bump Moq.Analyzers from 0.3.0 to 0.3.1 ( #1513 )
...
---
updated-dependencies:
- dependency-name: Moq.Analyzers
dependency-version: 0.3.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 17:09:38 +00:00
westey and GitHub
54c3eb726a
.NET: Add support for getting and creating Assistant and Foundry agents with ChatClientAgentOptions ( #1304 )
...
* Add support for getting and creating Assistant and Foundry agents with ChatClientAgentOptions
* Fix options cloning and agent creation
* Fix inconsistency
* Add support for mapping more tools and integration tests for ensuring CreateAIAgent works with those tools.
* Add support for additional openai tools with tests.
* Remove special casing for function tools, since it's either not supported yet, or requires a lot of code duplication.
* Removed unused using.
* Fix broken unit tests
* Change integration test to reduce flakiness.
2025-10-16 15:39:48 +00:00
Dmytro Struk and GitHub
3b9193c15e
Small fix in OpenAI Responses client ( #1509 )
2025-10-16 14:27:39 +00:00
f9a9fc7605
Add copilot instructions for c# ( #1482 )
...
* Add copilot instructions for c#
* Add some further improvements based on copilot suggestions.
* Update .github/copilot-instructions.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update C# sample code guidelines
Added a comment guideline for sample code in C#.
* Fix casing of Program.cs in instructions
* Update guidelines for coding standards and testing
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-16 13:02:29 +00:00
Trung Hieu and GitHub
9677899600
.NET: Duplicate System Instruction when creating a ChatClientAgentOptions instance with the constructor ( #1382 )
...
* unit test for using create agent option by constructor
* remove this for prevent duplicate when ChatClientAgentOption and ChatOption has same Instruction
* update unit test for ChatClientAgentOptions
2025-10-16 09:24:00 +00:00
Giles Odigwe and GitHub
db7f767180
Python: Added MCP headers for AzureAI ( #1506 )
...
* add mcp headers
* small fix
dotnet-1.0.0-nightly-251016.1
2025-10-16 05:42:45 +00:00
Victor Dibia and GitHub
b64358df7e
Python: Add Function Approval UI to DevUI ( #1401 )
...
* ensure function aproval is parsed correctly
* udpate ui, add deployment guide button, other debug panel fixes
* feat(devui): Implement lazy loading architecture with enhanced security and state management
Major architectural improvements to DevUI for better performance, security, and developer experience:
Performance & Architecture:
- Implement lazy loading for entity discovery - entities loaded on-demand instead of at startup
- Add hot reload capability for development workflow via new reload endpoint
- Reduce startup time and memory footprint by deferring module imports
Security Enhancements:
- Remove remote entity loading capabilities (POST /v1/entities/add, DELETE endpoints)
- DevUI now strictly local development tool - no remote code execution
- Add explicit security documentation and best practices in README
Frontend Improvements:
- Migrate to Zustand for centralized state management (replacing prop drilling)
- Add lightweight zero-dependency markdown renderer with code block copy support
- Improve gallery UX with setup instructions modal instead of direct URL loading
- Enhanced message UI with copy functionality and better token usage display
Testing & Quality:
- Expand test coverage for lazy loading, type detection, and cache invalidation
- Add comprehensive tests for new behaviors (+231 lines of test code)
- Improve type safety and documentation throughout
Breaking Changes:
- Remote entity loading via URLs is no longer supported
- Entities must be loaded from local filesystem only
* update ui issues, uupdate test descripion
2025-10-15 21:36:29 +00:00
Jacob Alber and GitHub
331c750515
.NET: [BREAKING] Enable sharing of workflow instances across concurrently executing runs ( #1464 )
...
* refactor: remove unused internals
* feat: Execution Mode for sharing a workflow among concurrent runs
* feat: Update WorkflowHostAgent to support concurrent execution
* Also update AsAgent APIs to support injecting a CheckpointManager and an IWorkflowExecutionEnvironment
* fix: Make Read logic consistent in DeclarativeWorkflowContext
2025-10-15 21:34:17 +00:00
Jacob Alber and GitHub
69e1ab0409
fix: Update WorkflowHostAgent post Checkpointing implementation ( #1498 )
...
WorkflowHostAgent was initially implemented before Checkpointing was available. This meant that in order to support resuming, the WorkflowHostAgent needed to keep the runs around, which broke it when stricter rules about concurrent sharing of workflows during execution were introduced.
This change updates the hosting logic to release the underlying StreamingRun when the RunStreamingAsync or RunAsync are invoked, in favour of keeping the checkpointing information in the WorkflowThread to enable resumption.
2025-10-15 18:18:28 +00:00
Dmytro Struk and GitHub
a4ba6eed57
Python: Added instructions for GitHub Copilot ( #1468 )
...
* Python instructions for GitHub Copilot
* Changed file location
* Revert "Changed file location"
This reverts commit 54a4723f8a .
2025-10-15 17:40:49 +00:00
Roger Barreto and GitHub
49455ad1b9
Python: Post-Fix GH008 - Re-Upload missing favicons via LFS ( #1490 )
...
* Stop tracking favicons via LFS and store as regular files
* Cleanup fav icons
2025-10-15 16:35:50 +00:00
5333cce63c
.NET: Remove Semantic Kernel Migration instructions (moved already to SK Repository) ( #1485 )
...
* Moved SK->AF migrations
* Update dotnet/samples/SemanticKernelMigration/README.md
Co-authored-by: westey <164392973+westey-m@users.noreply.github.com >
* Removing extra jump for migration
---------
Co-authored-by: westey <164392973+westey-m@users.noreply.github.com >
2025-10-15 16:13:11 +00:00
Roger Barreto and GitHub
f593bb535a
Temp: re-upload missing favicons via LFS ( #1479 )
2025-10-15 15:34:36 +00:00
Mark Wallace and GitHub
d7094d5432
.NET: ChatClientBuilderExtensions should be in the M.E.AI namespace ( #1484 )
...
* ChatClientBuilderExtensions should be in the M.E.AI namespace
* ChatClientBuilderExtensions should be in the M.E.AI namespace
2025-10-15 14:58:41 +00:00
ab450078ab
Update to M.E.AI 9.10 ( #1461 )
...
And other System.*/Microsoft.Extensions.* updated today
Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com >
2025-10-15 08:33:33 +00:00
Chris and GitHub
8e8dfb3948
Better ( #1463 )
dotnet-1.0.0-nightly-251015.1
2025-10-14 21:17:18 +00:00
Chris and GitHub
a6b6937b94
.NET Workflows - Support agent level function invocation for declarative workflow ( #1442 )
...
* Checkpoint
* Checkpoint
* Checkpoint
* Good
* Namespace
* Namespace
* Dun
* Async Test
* AgentId
* Portable pattern
* Portable2
* Portable3
* Respond to comments
* Namespace
* Function call selection
* ToHashSet
* ToHashSet
* Updated
* Parameter name
* Final
* Tests
dotnet-1.0.0-nightly-251014.2
2025-10-14 20:42:15 +00:00
a4039134de
.NET: Remove reflection samples ( #1460 )
...
* Removing usage of ReflectingExecutor<T> from workflow samples.
* Removing uneeded changes.
* Clean up.
* Update dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/Program.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/Program.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/Program.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/Program.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Updates per PR feedback.
* Undo changes to generated file.
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-10-14 20:34:04 +00:00
38e10eab81
Bump Azure.AI.Agents.Persistent from 1.2.0-beta.5 to 1.2.0-beta.6 ( #1409 )
...
---
updated-dependencies:
- dependency-name: Azure.AI.Agents.Persistent
dependency-version: 1.2.0-beta.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 20:27:11 +00:00