Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024-11-15-preview and 2024-11-01 updates for Conversations Runtime #47814

Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a97f873
Updated the dotnet sdk based on the new commit
amber-ccc Jan 10, 2025
53fd53e
- adjust test examples based on the new generated sdk
amber-ccc Jan 13, 2025
52430f3
Merge branch 'Azure:main' into amber/release_new_beta_for_Conversatio…
amber-ccc Jan 13, 2025
4eb9eaa
updated samples and snippets
amber-ccc Jan 13, 2025
903eeae
Merge branch 'amber/release_new_beta_for_Conversations_runtime' of ht…
amber-ccc Jan 13, 2025
ad5cf52
updated code based on new commit id
amber-ccc Jan 13, 2025
49d0766
modified the ChangeLog
amber-ccc Jan 13, 2025
c036a00
remove breaking changes and Bugs Fixed sections
amber-ccc Jan 13, 2025
476e070
update sdk based on the latest commit id
amber-ccc Jan 27, 2025
60723fd
updated class name based on new commit id
amber-ccc Jan 27, 2025
e9c770f
updated the snippets
amber-ccc Jan 27, 2025
799370d
add one more version 2024-11-01 in TestBase and add test for Conversa…
amber-ccc Jan 28, 2025
f4fa80b
Merge branch 'Azure:main' into amber/release_new_beta_for_Conversatio…
amber-ccc Jan 28, 2025
642d2a5
-adjust the version to 2024-11-01 in the test
amber-ccc Jan 28, 2025
01ab95d
Modified the assertion in conversation pii test with MaskPolicyType
amber-ccc Jan 29, 2025
bb03610
add async test for ConversationPii_WithCharacterMaskPolicy
amber-ccc Jan 29, 2025
5a5b47f
add sync and async test for ConversationPii_WithEntityMaskPolicy
amber-ccc Jan 29, 2025
764f8dc
add sync and async test for ConversationPii_WithNoMaskPolicy
amber-ccc Jan 29, 2025
e92b9ba
revert ConversationsClientLiveTests
amber-ccc Jan 29, 2025
1b4f375
modify new test data for previous tests
amber-ccc Jan 30, 2025
76b8518
revert previous tests to main version.
amber-ccc Jan 30, 2025
24a6cda
testing
amber-ccc Jan 30, 2025
9b5ff79
Merge branch 'Azure:main' into amber/release_new_beta_for_Conversatio…
amber-ccc Jan 30, 2025
9cb4d0d
test for authentication
amber-ccc Jan 30, 2025
ea99fb1
- update the assets.json
amber-ccc Jan 30, 2025
9d25873
update recording for some old version apis
amber-ccc Jan 30, 2025
612253f
update assets.json
amber-ccc Jan 31, 2025
ad39cbf
Succesfully run all the local tests and update the assets.json
amber-ccc Jan 31, 2025
9eca5be
adding new tests to clientLiveTests and update assets.json
amber-ccc Jan 31, 2025
66a6fde
remove the duplicate snippets
amber-ccc Feb 3, 2025
b9cc497
update some remaining test recordings to 2024-11-15-preview
amber-ccc Feb 3, 2025
d6bbe4f
udpate the new test for MaskWithEntity
amber-ccc Feb 3, 2025
5e450e5
Update the snippets for new feature tests
amber-ccc Feb 3, 2025
de6b53d
update the snippets for the general README file.
amber-ccc Feb 3, 2025
c4a94b2
updated the change log
amber-ccc Feb 3, 2025
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
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Release History

## 2.0.0-beta.2 (Unreleased)
## 2.0.0-beta.2 (2025-01-13)

### Features Added

- Exposed `JsonModelWriteCore` for model serialization procedure.

### Breaking Changes

### Bugs Fixed
- Added support for analyze-conversation API Versions
- 2024-11-01
- 2024-11-15-preview

### Other Changes
- Removed support for analyze-conversation API Versions
amber-ccc marked this conversation as resolved.
Show resolved Hide resolved
- 2023-11-15-preview

## 2.0.0-beta.1 (2024-08-01)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ AnalyzeConversationInput data = new ConversationLanguageUnderstandingInput(
id: "1",
participantId: "participant1",
text: "Send an email to Carol about tomorrow's demo")),
new ConversationLanguageUnderstandingActionContent(projectName, deploymentName)
new ConversationActionContent(projectName, deploymentName)
{
// Use Utf16CodeUnit for strings in .NET.
StringIndexType = StringIndexType.Utf16CodeUnit,
Expand Down Expand Up @@ -223,7 +223,7 @@ AnalyzeConversationInput data = new ConversationLanguageUnderstandingInput(
id: "1",
participantId: "participant1",
text: "Send an email to Carol about tomorrow's demo")),
new ConversationLanguageUnderstandingActionContent(projectName, deploymentName)
new ConversationActionContent(projectName, deploymentName)
{
// Use Utf16CodeUnit for strings in .NET.
StringIndexType = StringIndexType.Utf16CodeUnit,
Expand Down Expand Up @@ -251,7 +251,7 @@ AnalyzeConversationInput data =
{
Language = "es"
}),
new ConversationLanguageUnderstandingActionContent(projectName, deploymentName)
new ConversationActionContent(projectName, deploymentName)
{
// Use Utf16CodeUnit for strings in .NET.
StringIndexType = StringIndexType.Utf16CodeUnit,
Expand All @@ -275,7 +275,7 @@ AnalyzeConversationInput data = new ConversationLanguageUnderstandingInput(
id: "1",
participantId: "participant1",
text: "How are you?")),
new ConversationLanguageUnderstandingActionContent(projectName, deploymentName)
new ConversationActionContent(projectName, deploymentName)
amber-ccc marked this conversation as resolved.
Show resolved Hide resolved
{
StringIndexType = StringIndexType.Utf16CodeUnit,
});
Expand Down Expand Up @@ -426,7 +426,7 @@ List<AnalyzeConversationOperationAction> actions = new List<AnalyzeConversationO
{
new PiiOperationAction()
{
ActionContent = new ConversationPiiActionContent(),
ActionContent = new PiiActionContent(),
amber-ccc marked this conversation as resolved.
Show resolved Hide resolved
Name = "Conversation PII",
}
};
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ AnalyzeConversationInput data = new ConversationLanguageUnderstandingInput(
id: "1",
participantId: "participant1",
text: "Send an email to Carol about tomorrow's demo")),
new ConversationLanguageUnderstandingActionContent(projectName, deploymentName)
new ConversationActionContent(projectName, deploymentName)
{
// Use Utf16CodeUnit for strings in .NET.
StringIndexType = StringIndexType.Utf16CodeUnit,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ AnalyzeConversationInput data = new ConversationLanguageUnderstandingInput(
id: "1",
participantId: "participant1",
text: "How are you?")),
new ConversationLanguageUnderstandingActionContent(projectName, deploymentName)
new ConversationActionContent(projectName, deploymentName)
{
StringIndexType = StringIndexType.Utf16CodeUnit,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ AnalyzeConversationInput data =
{
Language = "es"
}),
new ConversationLanguageUnderstandingActionContent(projectName, deploymentName)
new ConversationActionContent(projectName, deploymentName)
{
// Use Utf16CodeUnit for strings in .NET.
StringIndexType = StringIndexType.Utf16CodeUnit,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ AnalyzeConversationInput data = new ConversationLanguageUnderstandingInput(
id: "1",
participantId: "participant1",
text: "Send an email to Carol about tomorrow's demo")),
new ConversationLanguageUnderstandingActionContent(projectName, deploymentName)
new ConversationActionContent(projectName, deploymentName)
{
// Use Utf16CodeUnit for strings in .NET.
StringIndexType = StringIndexType.Utf16CodeUnit,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ List<AnalyzeConversationOperationAction> actions = new List<AnalyzeConversationO
{
new PiiOperationAction()
{
ActionContent = new ConversationPiiActionContent(),
ActionContent = new PiiActionContent(),
Name = "Conversation PII",
}
};
Expand Down

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

Loading
Loading