Skip to content

Commit 0ee6f07

Browse files
committed
[C#] chore: Remove incomplete functions augmentation (#950)
## Linked issues closes: #949 ## Details Remove incomplete `functions` augmentation.
1 parent 1065b55 commit 0ee6f07

File tree

3 files changed

+0
-59
lines changed

3 files changed

+0
-59
lines changed

dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Augmentations/AugmentationType.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ public enum AugmentationType
1010
/// </summary>
1111
None,
1212

13-
/// <summary>
14-
/// Functions
15-
/// </summary>
16-
Functions,
17-
1813
/// <summary>
1914
/// Sequence
2015
/// </summary>

dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Augmentations/FunctionsAugmentation.cs

Lines changed: 0 additions & 51 deletions
This file was deleted.

dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Prompts/PromptManager.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,6 @@ private PromptTemplate AppendAugmentations(PromptTemplate template)
164164

165165
switch (template.Configuration.Augmentation.Type)
166166
{
167-
case AugmentationType.Functions:
168-
template.Augmentation = new FunctionsAugmentation();
169-
break;
170167
case AugmentationType.Monologue:
171168
template.Augmentation = new MonologueAugmentation(template.Actions);
172169
break;

0 commit comments

Comments
 (0)