Skip to content

Commit

Permalink
docs: adding Perplexity AI use case document in tabby-docs (#3678)
Browse files Browse the repository at this point in the history
* docs(perplexity): add documentation for Perplexity AI models and API usage

* chore: Update website/docs/references/models-http-api/perplexity.md

Co-authored-by: Meng Zhang <[email protected]>

---------

Co-authored-by: Meng Zhang <[email protected]>
  • Loading branch information
Sma1lboy and wsxiaoys authored Jan 13, 2025
1 parent 1be0274 commit 3bd73a8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions website/docs/references/models-http-api/perplexity.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Perplexity AI

[Perplexity AI](https://www.perplexity.ai/) is a company that develops large language models and offers them through their API service. They currently provide three powerful Llama-based models: [Sonar Small (8B)](https://docs.perplexity.ai/guides/model-cards#supported-models), [Sonar Large (70B)](https://docs.perplexity.ai/guides/model-cards#supported-models), and [Sonar Huge (405B)](https://docs.perplexity.ai/guides/model-cards#supported-models), all supporting a 128k context window.

## Chat model

Perplexity provides an OpenAI-compatible chat API interface. The Sonar Large (70B) and Huge (405B) models are recommended for better performance.

```toml title="~/.tabby/config.toml"
[model.chat.http]
kind = "openai/chat"
model_name = "llama-3.1-sonar-large-128k-online" # Also supports sonar-small-128k-online or sonar-huge-128k-online
api_endpoint = "https://api.perplexity.ai"
api_key = "your-api-key"
```

## Completion model

Perplexity currently does not offer completion-specific API endpoints.

## Embeddings model

Perplexity currently does not offer embeddings models through their API.

0 comments on commit 3bd73a8

Please sign in to comment.