quocdat25 commited on
Commit
6feb994
1 Parent(s): 3a5577c

Upload folder using huggingface_hub

Browse files
.ipynb_checkpoints/chat_gradio-checkpoint.py CHANGED
@@ -19,7 +19,7 @@ def predict(message, history):
19
  # Which cryptocurrency are you looking to delve into?
20
  # """))
21
 
22
- crypto_crew = CryptoCrew(company)
23
  response = "## Here is the Report\n\n" + crypto_crew.run()
24
 
25
  return response
 
19
  # Which cryptocurrency are you looking to delve into?
20
  # """))
21
 
22
+ crypto_crew = CryptoCrew(message)
23
  response = "## Here is the Report\n\n" + crypto_crew.run()
24
 
25
  return response
.ipynb_checkpoints/run_local-checkpoint.py CHANGED
@@ -12,10 +12,10 @@ load_dotenv()
12
  if __name__ == "__main__":
13
  print("## Welcome to Crypto Analysis Crew")
14
  print('-------------------------------')
15
- company = input("""Which cryptocurrency are you looking to delve into?
16
  """)
17
 
18
- crypto_crew = CryptoCrew(company)
19
  result = crypto_crew.run()
20
  print("\n\n########################")
21
  print("## Here is the Report")
 
12
  if __name__ == "__main__":
13
  print("## Welcome to Crypto Analysis Crew")
14
  print('-------------------------------')
15
+ coin = input("""Which cryptocurrency are you looking to delve into?
16
  """)
17
 
18
+ crypto_crew = CryptoCrew(coin)
19
  result = crypto_crew.run()
20
  print("\n\n########################")
21
  print("## Here is the Report")
chat_gradio.py CHANGED
@@ -19,7 +19,7 @@ def predict(message, history):
19
  # Which cryptocurrency are you looking to delve into?
20
  # """))
21
 
22
- crypto_crew = CryptoCrew(company)
23
  response = "## Here is the Report\n\n" + crypto_crew.run()
24
 
25
  return response
 
19
  # Which cryptocurrency are you looking to delve into?
20
  # """))
21
 
22
+ crypto_crew = CryptoCrew(message)
23
  response = "## Here is the Report\n\n" + crypto_crew.run()
24
 
25
  return response
run_local.py CHANGED
@@ -12,10 +12,10 @@ load_dotenv()
12
  if __name__ == "__main__":
13
  print("## Welcome to Crypto Analysis Crew")
14
  print('-------------------------------')
15
- company = input("""Which cryptocurrency are you looking to delve into?
16
  """)
17
 
18
- crypto_crew = CryptoCrew(company)
19
  result = crypto_crew.run()
20
  print("\n\n########################")
21
  print("## Here is the Report")
 
12
  if __name__ == "__main__":
13
  print("## Welcome to Crypto Analysis Crew")
14
  print('-------------------------------')
15
+ coin = input("""Which cryptocurrency are you looking to delve into?
16
  """)
17
 
18
+ crypto_crew = CryptoCrew(coin)
19
  result = crypto_crew.run()
20
  print("\n\n########################")
21
  print("## Here is the Report")