news-sentiment-project / config.json
wekey1998's picture
Rename config_json.json to config.json
0246c1f verified
{
"max_articles": 50,
"cache_ttl_hours": 6,
"supported_languages": ["English", "Hindi", "Tamil"],
"sentiment_models": ["VADER", "Loughran-McDonald", "FinBERT"],
"summarization_max_length": 150,
"summarization_min_length": 50,
"audio_enabled": true,
"translation_enabled": true,
"keyword_extraction_enabled": true,
"max_keywords": 20,
"debug_mode": false,
"huggingface_space_config": {
"title": "Global Business News Intelligence Dashboard",
"emoji": "๐Ÿ“Š",
"colorFrom": "blue",
"colorTo": "green",
"sdk": "streamlit",
"sdk_version": "1.28.1",
"app_file": "app.py",
"pinned": false,
"license": "mit"
},
"api_config": {
"host": "0.0.0.0",
"port": 8000,
"reload": false,
"workers": 1
},
"performance_settings": {
"max_concurrent_requests": 10,
"request_timeout_seconds": 300,
"memory_limit_gb": 4,
"cpu_optimization": true
},
"news_sources": {
"google_news": true,
"reuters": true,
"bbc": true,
"cnbc": true,
"bloomberg": true,
"marketwatch": true,
"financial_times": false
},
"model_settings": {
"use_cpu_only": true,
"model_cache_dir": "./model_cache",
"download_models_on_startup": false,
"optimize_for_inference": true
}
}