Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dfusion-dev committed Dec 14, 2024
1 parent 798dc2b commit 3323d9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions psl_proof/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
def load_config() -> Dict[str, Any]:
"""Load proof configuration from environment variables."""
config = {
'dlp_id': 4
'dlp_id': 4,
'input_dir': INPUT_DIR,
'salt': '5EkntCWI'
'salt': '5EkntCWI',
'validator_base_api_url': 'https://api.vana.genesis.dfusion.ai'
}
logging.info(f"Using config: {json.dumps(config, indent=2)}")
Expand Down
2 changes: 1 addition & 1 deletion psl_proof/models/cargo_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def timeliness_value(self) -> float:

def thoughtfulness_of_conversation(self) -> float:
n = len(self.participants) # n: number of participants
if n is 1:
if n == 1:
return 0.0
u = 3.0 # 𝜇: optimal number of participants
d = 5.0 # 𝜎: standard deviation of the curve
Expand Down

0 comments on commit 3323d9a

Please sign in to comment.