Merge branch 'master' of https://github.com/SciSharp/BotSharp into features/refine-model-settings

This commit is contained in:
Jicheng Lu 2025-09-17 15:10:08 -05:00
commit c50c0de9d5
2 changed files with 3 additions and 3 deletions

View file

@ -3,9 +3,9 @@ using System.Runtime.CompilerServices;
namespace BotSharp.Plugin.ChatHub.Helpers;
internal class EventEmitter
public class EventEmitter
{
internal static async Task SendChatEvent<T>(
public static async Task SendChatEvent<T>(
IServiceProvider services,
ILogger logger,
string @event,

View file

@ -9,7 +9,7 @@ public class SqlSelect : IFunctionCallback
{
private readonly IServiceProvider _services;
public string Name => "util-db-sql_select";
public string Indication => "Extracting data";
public string Indication => "Generated query statement. I'm pulling the data from database, please wait";
public SqlSelect(IServiceProvider services)
{