jiarongqiu commited on
Commit
dcfaaa9
·
1 Parent(s): 9fdd010
Files changed (1) hide show
  1. service/scheduler.py +2 -2
service/scheduler.py CHANGED
@@ -34,9 +34,9 @@ class Scheduler:
34
 
35
  def update_filecoin_data_stat(sefl):
36
  total_raw_bytes_power = api.get_fvm_storage()
37
- text = """The Data stored on the Filecoin Network is {} EiB. The Network Raw Byte Power of the Filecoin Network is {} EiB.
38
  """.format(total_raw_bytes_power,total_raw_bytes_power)
39
  # print(f"Update {text}")
40
- vector_store.upsert(text,"dataset_2",source='https://fvm.starboard.ventures/explorer/leaderboard?utm_source=Starboard-TLDR-HTS')
41
 
42
 
 
34
 
35
  def update_filecoin_data_stat(sefl):
36
  total_raw_bytes_power = api.get_fvm_storage()
37
+ text = """The storage capacity of the Filecoin Network is {} EiB. The Network Raw Byte Power of the Filecoin Network is {} EiB.
38
  """.format(total_raw_bytes_power,total_raw_bytes_power)
39
  # print(f"Update {text}")
40
+ vector_store.upsert(text,"dataset_2",source='https://dashboard.starboard.ventures/dashboard')
41
 
42