Skip to content

Commit

Permalink
Cherry pick branch 'genexuslabs:embedding-data-type' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiamurialdo authored and Beta Bot committed Nov 25, 2024
1 parent 9ee5644 commit 8951336
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dotnet/src/dotnetcore/Providers/AI/Model/GXAgent.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Collections;
using GeneXus.Procedure;
using GeneXus.Utils;
using OpenAI.Chat;
Expand Down Expand Up @@ -35,5 +36,10 @@ protected string CallAssistant(string assistant, GXProperties properties, object
return string.Empty;
}
}
protected string CallAgent(string assistant, GXProperties gxproperties, IList chatHistory, object callResult)
{
return string.Empty;
}

}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo("DotNetCoreUnitTest")]
[assembly: InternalsVisibleTo("ConsoleApp2")]

0 comments on commit 8951336

Please sign in to comment.