- Update .env.example to include NEWS_API_KEY configuration - Add newsapi-python dependency in pyproject.toml - Implement NewsAPI class for fetching news articles - Create Article model for structured news data - Add tests for NewsAPI functionality in test_news_api.py - Update pytest configuration to include news marker
32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
###############################################################################
|
|
# Configurazioni per i modelli di linguaggio
|
|
###############################################################################
|
|
|
|
# Alcune API sono a pagamento, altre hanno un piano gratuito con limiti di utilizzo
|
|
# Vedi https://docs.agno.com/examples/models per vedere tutti i modelli supportati
|
|
GOOGLE_API_KEY=
|
|
|
|
###############################################################################
|
|
# Configurazioni per gli agenti di mercato
|
|
###############################################################################
|
|
|
|
# Coinbase CDP API per Market Agent
|
|
# Ottenibili da: https://portal.cdp.coinbase.com/access/api
|
|
CDP_API_KEY_NAME=
|
|
CDP_API_PRIVATE_KEY=
|
|
|
|
# CryptoCompare API per Market Agent (alternativa)
|
|
# Ottenibile da: https://www.cryptocompare.com/cryptopian/api-keys
|
|
CRYPTOCOMPARE_API_KEY=
|
|
|
|
# Binance API per Market Agent (alternativa)
|
|
BINANCE_API_KEY=
|
|
BINANCE_API_SECRET=
|
|
|
|
###############################################################################
|
|
# Configurazioni per gli agenti di notizie
|
|
###############################################################################
|
|
# Ottenibile da: https://newsapi.org/docs
|
|
NEWS_API_KEY=
|
|
|