Skip to content

Commit

Permalink
[C#] chore: Remove incomplete functions augmentation (#950)
Browse files Browse the repository at this point in the history
## Linked issues

closes: #949 
## Details

Remove incomplete `functions` augmentation.
  • Loading branch information
singhk97 authored Nov 30, 2023
1 parent 1f7b921 commit b156a49
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 59 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ public enum AugmentationType
/// </summary>
None,

/// <summary>
/// Functions
/// </summary>
Functions,

/// <summary>
/// Sequence
/// </summary>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,6 @@ private PromptTemplate AppendAugmentations(PromptTemplate template)

switch (template.Configuration.Augmentation.Type)
{
case AugmentationType.Functions:
template.Augmentation = new FunctionsAugmentation();
break;
case AugmentationType.Monologue:
template.Augmentation = new MonologueAugmentation(template.Actions);
break;
Expand Down

0 comments on commit b156a49

Please sign in to comment.