2023-09-18 08:35:02 +00:00
|
|
|
using Refit;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Plugin.HuggingFace.Services;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// https://huggingface.co/docs/api-inference/quicktour
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IInferenceApi
|
|
|
|
|
{
|
|
|
|
|
[Post("/models/{space}/{model}")]
|
2024-01-16 17:38:45 +00:00
|
|
|
Task<List<TextGenResponse>> TextGenerate(string space, string model, [Body] InferenceInput input);
|
2023-09-18 08:35:02 +00:00
|
|
|
}
|