Skip to content

Commit 2e9a158

Browse files
jhakulinnick863glharper
authored
Add persistent agents (Azure#49555)
* add persistent agents * update snippets and export api * Fi run_Id in new feature branch (Azure#49580) * Add CI/CD and record the tests (Azure#49591) * Add CI * Add ci/cd for .NET agents * [AI] [AgentsPersistent] add extension to enable ConnectionProvider interface usage (Azure#49630) * Split out agent operations (Azure#49656) * First code generation * Correct the names * Add custon code * Add custom classes and code. * Generate one sample * Agents -> AgentsAdministration * Fix samples * Fix namespace * Update samples * Latest renaming * New changes * Replace PageableList by Pageable And AsyncPageable. * Fixes and renaming * Fix list iteration * Rename classes * Fixes * Fix API * Hide the test usage of connection string from customer. (Azure#49864) * Remove KeyAuthentication (Azure#49883) * Fix error in the unit tests (Azure#49886) --------- Co-authored-by: Nikolay Rovinskiy <30440255+nick863@users.noreply.github.com> Co-authored-by: Glenn Harper <64209257+glharper@users.noreply.github.com>
1 parent dd12f5a commit 2e9a158

File tree

590 files changed

+80337
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

590 files changed

+80337
-0
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.9.34723.18
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{ECC730C1-4AEA-420C-916A-66B19B79E4DC}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{827E0CD3-B72D-47B6-A68D-7590B98EB39B}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.AI.Agents.Persistent", "src\Azure.AI.Agents.Persistent.csproj", "{63798869-0F91-4097-819E-CB2EF0D5DBDB}"
11+
EndProject
12+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{0AB3BF05-4346-4AA6-1389-037BE0695223}"
13+
EndProject
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.AI.Agents.Persistent.Tests", "tests\Azure.AI.Agents.Persistent.Tests.csproj", "{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}"
15+
EndProject
16+
Global
17+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
18+
Debug|Any CPU = Debug|Any CPU
19+
Debug|x64 = Debug|x64
20+
Debug|x86 = Debug|x86
21+
Release|Any CPU = Release|Any CPU
22+
Release|x64 = Release|x64
23+
Release|x86 = Release|x86
24+
EndGlobalSection
25+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
26+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Debug|x64.ActiveCfg = Debug|Any CPU
29+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Debug|x64.Build.0 = Debug|Any CPU
30+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Debug|x86.ActiveCfg = Debug|Any CPU
31+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Debug|x86.Build.0 = Debug|Any CPU
32+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
33+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Release|Any CPU.Build.0 = Release|Any CPU
34+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Release|x64.ActiveCfg = Release|Any CPU
35+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Release|x64.Build.0 = Release|Any CPU
36+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Release|x86.ActiveCfg = Release|Any CPU
37+
{ECC730C1-4AEA-420C-916A-66B19B79E4DC}.Release|x86.Build.0 = Release|Any CPU
38+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Debug|x64.ActiveCfg = Debug|Any CPU
41+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Debug|x64.Build.0 = Debug|Any CPU
42+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Debug|x86.ActiveCfg = Debug|Any CPU
43+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Debug|x86.Build.0 = Debug|Any CPU
44+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Release|Any CPU.ActiveCfg = Release|Any CPU
45+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Release|Any CPU.Build.0 = Release|Any CPU
46+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Release|x64.ActiveCfg = Release|Any CPU
47+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Release|x64.Build.0 = Release|Any CPU
48+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Release|x86.ActiveCfg = Release|Any CPU
49+
{63798869-0F91-4097-819E-CB2EF0D5DBDB}.Release|x86.Build.0 = Release|Any CPU
50+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
51+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
52+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Debug|x64.ActiveCfg = Debug|Any CPU
53+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Debug|x64.Build.0 = Debug|Any CPU
54+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Debug|x86.ActiveCfg = Debug|Any CPU
55+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Debug|x86.Build.0 = Debug|Any CPU
56+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
57+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Release|Any CPU.Build.0 = Release|Any CPU
58+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Release|x64.ActiveCfg = Release|Any CPU
59+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Release|x64.Build.0 = Release|Any CPU
60+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Release|x86.ActiveCfg = Release|Any CPU
61+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB}.Release|x86.Build.0 = Release|Any CPU
62+
EndGlobalSection
63+
GlobalSection(SolutionProperties) = preSolution
64+
HideSolutionNode = FALSE
65+
EndGlobalSection
66+
GlobalSection(NestedProjects) = preSolution
67+
{63798869-0F91-4097-819E-CB2EF0D5DBDB} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
68+
{DDFFDB5B-6474-463B-B033-1C0A32AF42EB} = {0AB3BF05-4346-4AA6-1389-037BE0695223}
69+
EndGlobalSection
70+
GlobalSection(ExtensibilityGlobals) = postSolution
71+
SolutionGuid = {A97F4B90-2591-4689-B1F8-5F21FE6D6CAE}
72+
EndGlobalSection
73+
EndGlobal
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Release History
2+
3+
## 1.0.0-beta.1 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<!--
3+
Add any shared properties you want for the projects under this package directory that need to be set before the auto imported Directory.Build.props
4+
-->
5+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.props))\Directory.Build.props" />
6+
</Project>

0 commit comments

Comments
 (0)