Closed marcominerva closed 11 months ago
In some scenario it is useful to just get the query, and then let the user decide what to do with it. So, the following method must be added to DatabaseGptClient:
DatabaseGptClient
public interface IDatabaseGptClient : IDisposable { Task<string> GetNaturalLanguageQueryAsync(Guid sessionId, string question, CancellationToken cancellationToken = default); }
In some scenario it is useful to just get the query, and then let the user decide what to do with it. So, the following method must be added to
DatabaseGptClient
: