quocdat25 commited on
Commit
b252213
1 Parent(s): 607aee8

Upload folder using huggingface_hub

Browse files
.ipynb_checkpoints/agents-checkpoint.py CHANGED
@@ -28,7 +28,7 @@ class CryptoAnalysisAgents():
28
  tools=[
29
  search_tool,
30
  GetCryptoNews(),
31
- SearchDuckDuckGo()
32
  ],
33
  allow_delegation=False,
34
  llm=llm,
 
28
  tools=[
29
  search_tool,
30
  GetCryptoNews(),
31
+ # SearchDuckDuckGo()
32
  ],
33
  allow_delegation=False,
34
  llm=llm,
.ipynb_checkpoints/chat_gradio-checkpoint.py CHANGED
@@ -23,7 +23,7 @@ def predict(message, history):
23
  crypto_crew = CryptoCrew(message)
24
  response = crypto_crew.run(logging=True)
25
  for i in range(len(response)):
26
- time.sleep(0.002)
27
  yield response[: i+1]
28
 
29
  # return response
 
23
  crypto_crew = CryptoCrew(message)
24
  response = crypto_crew.run(logging=True)
25
  for i in range(len(response)):
26
+ time.sleep(0.001)
27
  yield response[: i+1]
28
 
29
  # return response
agents.py CHANGED
@@ -28,7 +28,7 @@ class CryptoAnalysisAgents():
28
  tools=[
29
  search_tool,
30
  GetCryptoNews(),
31
- SearchDuckDuckGo()
32
  ],
33
  allow_delegation=False,
34
  llm=llm,
 
28
  tools=[
29
  search_tool,
30
  GetCryptoNews(),
31
+ # SearchDuckDuckGo()
32
  ],
33
  allow_delegation=False,
34
  llm=llm,
chat_gradio.py CHANGED
@@ -23,7 +23,7 @@ def predict(message, history):
23
  crypto_crew = CryptoCrew(message)
24
  response = crypto_crew.run(logging=True)
25
  for i in range(len(response)):
26
- time.sleep(0.002)
27
  yield response[: i+1]
28
 
29
  # return response
 
23
  crypto_crew = CryptoCrew(message)
24
  response = crypto_crew.run(logging=True)
25
  for i in range(len(response)):
26
+ time.sleep(0.001)
27
  yield response[: i+1]
28
 
29
  # return response