mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 01:33:36 +00:00
15 lines
503 B
C#
15 lines
503 B
C#
|
|
using AIStudio.Provider;
|
||
|
|
|
||
|
|
namespace AIStudio.Models.Hosting.Hosts;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Perplexity's own API.
|
||
|
|
/// </summary>
|
||
|
|
public sealed class HostPerplexity : ModelHost
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
public override LLMProviders Provider => LLMProviders.PERPLEXITY;
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
public override ModelSource Source => new("https://docs.perplexity.ai/api-reference/chat-completions-post", new DateOnly(2026, 9, 11), "Models are named plainly, and there is one API to reach them through.");
|
||
|
|
}
|