Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dailalib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.16.2"
__version__ = "3.17.0"

import os
# stop LiteLLM from querying at all to the remote server
Expand Down
8 changes: 4 additions & 4 deletions dailalib/api/litellm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"gpt-4o-mini": 16_000,
"gpt-4-turbo": 128_000,
"claude-3-5-sonnet-20240620": 200_000,
"gemini/gemini-pro": 12_288,
"vertex_ai_beta/gemini-pro": 12_288,
"gemini/gemini-2.0-flash": 1_000_000,
"vertex_ai_beta/gemini-2.0-flash": 1_000_000,
# perplex is on legacy mode :(
"perplexity/llama-3.1-sonar-small-128k-online": 127_072,
"perplexity/llama-3.1-sonar-medium-128k-online": 127_072,
Expand All @@ -24,8 +24,8 @@
"gpt-4o-mini": {"prompt_price": 0.150, "completion_price": 0.600},
"gpt-4-turbo": {"prompt_price": 10, "completion_price": 30},
"claude-3.5-sonnet-20240620": {"prompt_price": 3, "completion_price": 15},
"gemini/gemini-pro": {"prompt_price": 0.150, "completion_price": 0.600},
"vertex_ai_beta/gemini-pro": {"prompt_price": 0.150, "completion_price": 0.600},
"gemini/gemini-2.0-flash": {"prompt_price": 0.10, "completion_price": 0.4},
"vertex_ai_beta/gemini-2.0-flash": {"prompt_price": 0.10, "completion_price": 0.4},
# perplex is on legacy mode not available from 02/22/25:(
"perplexity/llama-3.1-sonar-small-128k-online": {"prompt_price": 0.150, "completion_price": 0.600},
"perplexity/llama-3.1-sonar-large-128k-online": {"prompt_price": 0.150, "completion_price": 0.600},
Expand Down