Skip to content

Commit 50e8486

Browse files
Bump Microsoft.Agents.AI.OpenAI from 1.0.0-preview.260128.1 to 1.0.0-rc4 (#52525)
* Bump Microsoft.Agents.AI.OpenAI from 1.0.0-preview.260128.1 to 1.0.0-rc4 --- updated-dependencies: - dependency-name: Microsoft.Agents.AI.OpenAI dependency-version: 1.0.0-rc4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Use CreateSessionAsync --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com>
1 parent 80c9b5d commit 50e8486

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/ai/snippets/prompt-engineering/multi-turn-chat.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
.AsAIAgent();
1414

1515
// Create a session to maintain conversation state.
16-
AgentSession session = await agent.GetNewSessionAsync();
16+
AgentSession session = await agent.CreateSessionAsync();
1717

1818
while (true)
1919
{

docs/ai/snippets/prompt-engineering/multi-turn-chat.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Azure.AI.OpenAI" Version="2.8.0-beta.1" />
13-
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.0.0-preview.260128.1" />
13+
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.0.0-rc4" />
1414
<!--
1515
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.2" />
1616
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="10.0.2" />

0 commit comments

Comments
 (0)