using AIStudio.Provider;
namespace AIStudio.Models.Hosting.Hosts;
///
/// Hetzner's inference offering, which serves open weights under their plain names.
///
public sealed class HostHetzner : ModelHost
{
///
public override LLMProviders Provider => LLMProviders.HETZNER;
///
public override ModelSource Source => new("https://experiments.hetzner.com/docs/inference", new DateOnly(2026, 9, 11), "Open weights named plainly, served through the OpenAI-compatible chat completion API.");
}