using AIStudio.Provider; namespace AIStudio.Models.Hosting.Hosts; /// /// Google's own cloud. /// public sealed class HostGoogle : ModelHost { /// public override LLMProviders Provider => LLMProviders.GOOGLE; /// public override ModelSource Source => new("https://ai.google.dev/gemini-api/docs/openai", new DateOnly(2026, 9, 11), "Models are named plainly, and the app reaches them through the OpenAI-compatible endpoint."); }