feat(perplexity-agent): add grok 4.6 and deepseek-v4-flash-0731 models configuration (#4736)

* feat(perplexity-agent): add grok 4.6 model configuration

* feat(perplexity-agent): add deepseek v4 flash model configuration
This commit is contained in:
rakshith1928
2026-08-15 04:28:28 +05:30
committed by GitHub
parent 535d7b6142
commit 29fb1fdaa3
2 changed files with 33 additions and 0 deletions
@@ -0,0 +1,14 @@
# Perplexity Agent (OpenAI-compatible relay) pricing per:
# https://docs.perplexity.ai/docs/agent-api/models#deepseek
# Reasoning tokens billed at the output rate (no separate CoT price).
# Effort: reasoning_effort = low|high|max
base_model = "deepseek/deepseek-v4-flash-0731"
[[reasoning_options]]
type = "effort"
values = ["low", "high", "max"]
[cost]
input = 0.13
output = 0.26
cache_read = 0.028
@@ -0,0 +1,19 @@
# Pricing per Perplexity Agent API docs:
# https://docs.perplexity.ai/docs/agent-api/models#xai
# Context-based tiers: <=200k / >200k.
base_model = "xai/grok-4.6"
[[reasoning_options]]
type = "effort"
values = ["low", "medium", "high", "xhigh"]
[cost]
input = 2.00
output = 6.00
cache_read = 0.50
[[cost.tiers]]
tier = { type = "context", size = 200_000 }
input = 4.00
output = 12.00
cache_read = 1.00