File size: 282 Bytes
7ea24de
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# config/settings.py

# Hugging Face models
SENTIMENT_MODEL = "distilbert-base-uncased-finetuned-sst-2-english"
SUMMARIZER_MODEL = "facebook/bart-large-cnn"

# File paths
DATA_PATH = "data/sample_texts.txt"

# WordCloud settings
WC_WIDTH = 800
WC_HEIGHT = 400
WC_BG_COLOR = "white"