Skip to content

Commit

Permalink
increased some parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
PsicoThePato committed May 26, 2024
1 parent a7446ca commit 25e8a2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/synthia/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,15 @@ def serve(
help="Name of the key present in `~/.commune/key`"
)
],
call_timeout: int = 113,
call_timeout: int = 150,
provider: Optional[str] = typer.Option(
default="anthropic", callback=provider_callback
),

):
provider_enumerated = ClaudeProviders(provider)
keypair = classic_load_key(commune_key) # type: ignore
settings = ValidatorSettings(
) #type: ignore
settings = ValidatorSettings() #type: ignore
c_client = CommuneClient(get_node_url())
synthia_uid = get_synthia_netuid(c_client)
validator = TextValidator(
Expand Down
2 changes: 1 addition & 1 deletion src/synthia/validator/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ValidatorSettings(BaseSettings):
# == Scoring ==
# sleep time between each iteration
# (we are aiming at 50 block subnet tempo, with 8 second block time)
iteration_interval: int = 1600
iteration_interval: int = 1920
max_allowed_weights: int = 420 # this is a global parameter of the maximum weights that a validator can set
hf_uploader_ss58: str = "5EX6ixabe8fiWHySw4SYaJAkaHLKeqSJ3rv7so2FrLC2cfGV"

Expand Down

0 comments on commit 25e8a2b

Please sign in to comment.