Skip to content

Commit

Permalink
Move DLP ID
Browse files Browse the repository at this point in the history
  • Loading branch information
Volara committed Oct 2, 2024
1 parent ebff37b commit ca07ac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This template provides a basic structure for building proof tasks that:

```json
{
"dlp_id": 1234, // DLP ID is found in the Root Network contract after the DLP is registered
"dlp_id": 19, // DLP ID is found in the Root Network contract after the DLP is registered
"valid": false, // A single boolean to summarize if the file is considered valid in this DLP
"score": 0.7614457831325301, // A score between 0 and 1 for the file, used to determine how valuable the file is. This can be an aggregation of the individual scores below.
"authenticity": 1.0, // A score between 0 and 1 to rate if the file has been tampered with
Expand Down
2 changes: 1 addition & 1 deletion volara_proof/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def load_config() -> Dict[str, Any]:
"""Load proof configuration from environment variables."""
config = {
"dlp_id": 1234, # Set your own DLP ID here
"dlp_id": 19, # Set your own DLP ID here
"use_sealing": os.path.isdir(SEALED_DIR),
"input_dir": INPUT_DIR,
"cookies": os.environ.get("COOKIES", None),
Expand Down

0 comments on commit ca07ac0

Please sign in to comment.