using AIStudio.Provider;
namespace AIStudio.Models.Hosting.Hosts;
///
/// Anthropic's own cloud.
///
public sealed class HostAnthropic : ModelHost
{
///
public override LLMProviders Provider => LLMProviders.ANTHROPIC;
///
public override ModelSource Source => new("https://docs.anthropic.com/en/api/messages", new DateOnly(2026, 9, 11), "Models are named plainly, and there is one API to reach them through.");
}