Skip to content

Commit c888c41

Browse files
authored
switch model
1 parent 9ddca1f commit c888c41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

validators/text_validator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self, dendrite, config, subtensor, wallet: bt.wallet):
1616
super().__init__(dendrite, config, subtensor, wallet, timeout=75)
1717
self.streaming = True
1818
self.query_type = "text"
19-
self.model = "gpt-4-1106-preview"
19+
self.model = "gpt-4-0125-preview"
2020
self.max_tokens = 2048
2121
self.temperature = 0.0001
2222
self.weight = 1
@@ -83,7 +83,7 @@ async def start_query(self, available_uids, metagraph) -> tuple[list, dict]:
8383
# claude models = ["claude-2.1", "claude-2.0", "claude-instant-1.2"]
8484
self.model = "anthropic.claude-v2:1"
8585
elif self.provider == "OpenAI":
86-
self.model = "gpt-4-1106-preview"
86+
self.model = "gpt-4-0125-preview"
8787

8888
for uid in available_uids:
8989
prompt = await self.get_question(len(available_uids))

0 commit comments

Comments
 (0)