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