Add TODO comments for request analysis and sentiment handling in ToolAgent

This commit is contained in:
2025-09-26 16:17:30 +02:00
parent eaa2e9e12a
commit a51ec67ac1
2 changed files with 3 additions and 2 deletions

View File

@@ -58,8 +58,6 @@ The Output **must be a single JSON object** with two keys: `"strategia"` and `"p
* `"motivazione"`: Stringa (massimo una frase) che giustifica l'allocazione.
**THE OUTPUT MUST BE GENERATED BY FAITHFULLY COPYING THE FOLLOWING STRUCTURAL TEMPLATE (IN ITALIAN CONTENT, JSON FORMAT):**
```json
{
"strategia": "[Strategia sintetico-operativa in massimo 5 frasi...]",
"portafoglio": [

View File

@@ -41,6 +41,9 @@ class ToolAgent:
style_index: indice dello stile di previsione nella lista all_styles.
"""
# TODO Step 0: ricerca e analisi della richiesta (es. estrazione di criptovalute specifiche)
# Prendere la query dell'utente e fare un'analisi preliminare con una agente o con un team di agenti (social e news)
# Step 1: raccolta analisi
cryptos = ["BTC", "ETH", "XRP", "LTC", "BCH"] # TODO rendere dinamico in futuro
market_data = self.market.get_products(cryptos)