Skip to content

Commit

Permalink
use claude
Browse files Browse the repository at this point in the history
  • Loading branch information
surcyf123 authored Mar 24, 2024
1 parent 731bbb0 commit 60282f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validators/text_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async def start_query(self, available_uids, metagraph) -> tuple[list, dict]:
query_tasks = []
uid_to_question = {}
# Randomly choose the provider based on specified probabilities
providers = ["OpenAI"] * 100 + ["Anthropic"] * 0 + ["Gemini"] * 0 + ["Claude"] * 0
providers = ["OpenAI"] * 80 + ["Anthropic"] * 0 + ["Gemini"] * 0 + ["Claude"] * 20
self.provider = random.choice(providers)

if self.provider == "Anthropic":
Expand Down

0 comments on commit 60282f7

Please sign in to comment.