BotSharp/src/Plugins/BotSharp.Plugin.HuggingFace/Services/IInferenceApi.cs
2024-01-16 11:38:45 -06:00

13 lines
324 B
C#

using Refit;
namespace BotSharp.Plugin.HuggingFace.Services;
/// <summary>
/// https://huggingface.co/docs/api-inference/quicktour
/// </summary>
public interface IInferenceApi
{
[Post("/models/{space}/{model}")]
Task<List<TextGenResponse>> TextGenerate(string space, string model, [Body] InferenceInput input);
}