Skip to content

Commit 39a6ba6

Browse files
authored
Merge pull request #114 from web-genie-ai/feat/adjust-task-count
chore: adjust task count
2 parents 20edfe1 + 43d2712 commit 39a6ba6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

neurons/validators/genie_validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ async def forward(self):
289289
else:
290290
task_index = self.neuron.score_manager.number_of_tasks
291291

292-
MAX_NUMBER_OF_TASKS_PER_SESSION = 20
292+
MAX_NUMBER_OF_TASKS_PER_SESSION = 18
293293
if task_index >= MAX_NUMBER_OF_TASKS_PER_SESSION:
294294
return
295295

webgenie/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Change this value when updating your code base.
55
# Define the version of the webgenie.
6-
__VERSION__ = "1.1.15" # version
6+
__VERSION__ = "1.1.16" # version
77

88
SPEC_VERSION = (
99
(1000 * int(__VERSION__.split(".")[0]))

0 commit comments

Comments
 (0)