CryptoScoutv1 commited on
Commit
9076694
·
verified ·
1 Parent(s): 7b23434

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -52,8 +52,10 @@ def create_crewai_crypto_setup(crypto_symbol):
52
 
53
  # Task 3: Technical/Trade Signals
54
  technical_signals_t3 = Task(
55
- description=f"Research and perform technical analysis on cryptocurrency - {crypto_symbol}, identify trade and techincal signals and or indicators for bullish or bearish trends.",
56
- expected_output="Summary of information highlighting metrics or numbers if present. Final Ouput strictly 500 chars. or less",
 
 
57
  tools=[WebSearchTools().technicalsignals_search, WebSearchTools().process_search_results],
58
  agent=research_agent,
59
  )
@@ -61,7 +63,7 @@ def create_crewai_crypto_setup(crypto_symbol):
61
  # Task 4: Risks
62
  risks_t4 = Task(
63
  description=f"Research recent sentiment, news, volatility and other risks associcated with cryptocurrency - {crypto_symbol}.",
64
- expected_output="Summary of identified risks. Final Ouput strictly 400 chars. or less",
65
  tools=[duckduckgo_search_tool],
66
  agent=research_agent,
67
  )
 
52
 
53
  # Task 3: Technical/Trade Signals
54
  technical_signals_t3 = Task(
55
+ description=f""""Research and perform technical analysis on cryptocurrency - {crypto_symbol},
56
+ identify recent trade and techincal signals, Look for daily timeframe, trend type (Bullish, neutral, bearish),
57
+ and type of indicator like moving averages, RSI, MACD, or other related signars if present during search""",
58
+ expected_output="Summary of information highlighting metrics or numbers if present. Final Ouput strictly 600 chars. or less",
59
  tools=[WebSearchTools().technicalsignals_search, WebSearchTools().process_search_results],
60
  agent=research_agent,
61
  )
 
63
  # Task 4: Risks
64
  risks_t4 = Task(
65
  description=f"Research recent sentiment, news, volatility and other risks associcated with cryptocurrency - {crypto_symbol}.",
66
+ expected_output="Summary of identified risks. Final Ouput strictly 300 chars. or less",
67
  tools=[duckduckgo_search_tool],
68
  agent=research_agent,
69
  )