File size: 46,455 Bytes
9858829 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 | # Agents Architecture Documentation
## Table of Contents
- [Overview](#overview)
- [Agent Architecture](#agent-architecture)
- [Existing Agents](#existing-agents)
- [How Agents Work](#how-agents-work)
- [Adding New Agents](#adding-new-agents)
- [Modifying Existing Agents](#modifying-existing-agents)
- [Configuration System](#configuration-system)
- [Best Practices](#best-practices)
- [Troubleshooting](#troubleshooting)
## Overview
The agent system in this project is built on a modular, extensible architecture that processes social media comments through a series of specialized agents. Each agent performs a specific task (language detection, translation, sentiment analysis) and is orchestrated through a LangGraph workflow.
### Key Design Principles
1. **Modularity**: Each agent handles a single responsibility
2. **Extensibility**: Easy to add new agents without modifying existing code
3. **Consistency**: All agents inherit from a common base class
4. **Configuration-Driven**: Agent behavior controlled through JSON config files
5. **Error Resilience**: Robust error handling at every level
### Technology Stack
- **LangChain**: For LLM interactions and agent framework
- **LangGraph**: For workflow orchestration
- **OpenAI API**: LLM backend for NLP tasks
- **Lingua**: Fast language detection library
- **Python 3.x**: Core language
## Agent Architecture
### Directory Structure
```
agents/
βββ __init__.py # Module exports
βββ base_agent.py # Abstract base class
βββ language_detection_agent.py # Language detection agent
βββ translation_agent.py # Translation agent
βββ sentiment_analysis_agent.py # Sentiment analysis agent
βββ README.md # This file
```
### Base Agent Class
All agents inherit from `BaseAgent` (`base_agent.py`), which provides:
```python
class BaseAgent(ABC):
"""Abstract base class for all agents"""
# Common attributes
- name: str # Agent name
- config: Dict[str, Any] # Configuration dictionary
- model: str # LLM model to use
- temperature: float # LLM temperature
- max_retries: int # Maximum retry attempts
# Abstract methods (must be implemented)
@abstractmethod
def process(input_data: Dict) -> Dict
@abstractmethod
def validate_input(input_data: Dict) -> bool
# Common methods (inherited)
def get_name() -> str
def get_config() -> Dict
def log_processing(message: str, level: str)
def handle_error(error: Exception, context: str) -> Dict
```
### Workflow Integration
Agents are orchestrated through `workflow/comment_processor.py` using LangGraph:
```
βββββββββββββββββββββββ
β Language Detection β
β Agent β
ββββββββββββ¬βββββββββββ
β
βΌ
ββββββ΄βββββ
β English?β
ββββββ¬βββββ
β
βββββββ΄ββββββ
β β
Yes No
β β
β βΌ
β βββββββββββββββ
β β Translation β
β β Agent β
β ββββββββ¬βββββββ
β β
βββββββ¬ββββββ
β
βΌ
ββββββββββββββββββββ
β Sentiment β
β Analysis Agent β
ββββββββββββββββββββ
```
## Existing Agents
### 1. Language Detection Agent
**File**: `language_detection_agent.py`
**Purpose**: Detects the language of comment text using a hybrid approach.
**Strategy**:
- Uses **Lingua library** for fast English detection
- Falls back to **LLM** for non-English languages (higher accuracy)
- Returns language name, ISO code, and confidence level
**Key Methods**:
```python
def detect_with_lingua(text: str) -> tuple[str, str, bool]
# Fast detection using lingua library
# Returns: (language_code, language_name, is_english)
def detect_with_llm(text: str) -> Dict[str, Any]
# LLM-based detection for nuanced analysis
# Returns: {language, language_code, confidence, has_text}
def process(input_data: Dict) -> Dict
# Main processing: lingua first, LLM if not English
```
**Configuration** (`sentiment_config.json`):
```json
{
"language_detection": {
"model": "gpt-5-nano",
"temperature": 0.0,
"max_retries": 3
}
}
```
**Input Requirements**:
- `comment_text`: str
**Output**:
- `language`: str (e.g., "English", "Spanish")
- `language_code`: str (ISO 639-1, e.g., "en", "es")
- `is_english`: bool
- `confidence`: str ("high", "medium", "low")
- `detection_method`: str ("lingua", "llm", "default")
- `has_text`: bool
### 2. Translation Agent
**File**: `translation_agent.py`
**Purpose**: Translates non-English comments to English using LLM.
**Strategy**:
- Skips translation if already English
- Uses LLM for context-aware, high-quality translation
- Preserves tone, intent, emojis, and special characters
- Specialized for music/education social media content
**Key Methods**:
```python
def translate_text(text: str, source_language: str) -> Dict
# LLM-based translation with context preservation
# Returns: {translated_text, translation_confidence, notes}
def process(input_data: Dict) -> Dict
# Main processing: checks is_english, translates if needed
```
**Configuration**:
```json
{
"translation": {
"model": "gpt-5-nano",
"temperature": 0.3,
"max_retries": 3
}
}
```
**Input Requirements**:
- `comment_text`: str
- `is_english`: bool
- `language`: str (optional, for context)
**Output**:
- `translated_text`: str
- `translation_performed`: bool
- `translation_confidence`: str
- `translation_notes`: str
### 3. Sentiment Analysis Agent
**File**: `sentiment_analysis_agent.py`
**Purpose**: Analyzes sentiment polarity, intent, and determines if reply is needed.
**Strategy**:
- Uses content description for context
- Supports parent comment context for reply analysis
- Multi-label intent classification
- Differentiates genuine vs rhetorical/sarcastic questions
- Platform-aware analysis (YouTube, Facebook, Instagram)
**Key Features**:
- **Context-Aware**: Uses content description and parent comment
- **Multi-Label**: Can assign multiple intents to a single comment
- **Reply Policy**: Flags comments requiring responses
- **Rhetorical Detection**: Identifies sarcastic/rhetorical questions
**Key Methods**:
```python
def _build_context_string(
content_description: str,
parent_comment_text: str = None,
platform: str = None,
content_title: str = None
) -> str
# Builds context for LLM prompt
# Handles YouTube title+description vs other platforms
def analyze_sentiment(
comment_text: str,
content_description: str,
parent_comment_text: str = None,
platform: str = None,
content_title: str = None
) -> Dict
# Performs sentiment analysis with full context
# Returns: {sentiment_polarity, intent, requires_reply, confidence, analysis_notes}
def process(input_data: Dict) -> Dict
# Main processing: validates input, analyzes sentiment
```
**Configuration**:
Uses two config files:
1. **Agent Config** (`sentiment_config.json`):
```json
{
"sentiment_analysis": {
"model": "gpt-5-nano",
"temperature": 0.2,
"max_retries": 3
}
}
```
2. **Categories Config** (`sentiment_analysis_config.json`):
```json
{
"sentiment_polarity": {
"categories": [
{"value": "very_positive", "label": "Very Positive", "description": "..."},
{"value": "positive", "label": "Positive", "description": "..."},
{"value": "neutral", "label": "Neutral", "description": "..."},
{"value": "negative", "label": "Negative", "description": "..."},
{"value": "very_negative", "label": "Very Negative", "description": "..."}
]
},
"intent": {
"categories": [
{"value": "praise", "description": "..."},
{"value": "question", "description": "..."},
{"value": "request", "description": "..."},
{"value": "feedback_negative", "description": "..."},
{"value": "suggestion", "description": "..."},
{"value": "humor_sarcasm", "description": "..."},
{"value": "off_topic", "description": "..."},
{"value": "spam_selfpromo", "description": "..."}
]
},
"reply_policy": {
"requires_reply_intents": ["question", "request"],
"not_include": ["humor_sarcasm"]
}
}
```
**Input Requirements**:
- `comment_text`: str
- `content_description`: str
- `parent_comment_text`: str (optional)
- `platform`: str (optional, e.g., "youtube", "facebook")
- `content_title`: str (optional, mainly for YouTube)
**Output**:
- `sentiment_polarity`: str (one of: very_positive, positive, neutral, negative, very_negative)
- `intent`: str (comma-separated list, e.g., "praise, question")
- `requires_reply`: bool
- `sentiment_confidence`: str ("high", "medium", "low")
- `analysis_notes`: str (1-2 sentence summary)
- `success`: bool (False if critical fields missing)
### Common Patterns Across All Agents
1. **JSON Response Parsing**: All agents have `_parse_llm_json_response()` method to handle markdown-wrapped JSON
2. **Error Handling**: All use `handle_error()` from base class
3. **Logging**: All use `log_processing()` for consistent logging
4. **Validation**: All implement `validate_input()` before processing
5. **State Preservation**: All preserve original input data in output
## How Agents Work
### Workflow Execution Flow
1. **Initialization** (`CommentProcessingWorkflow.__init__`):
```python
# Load configurations
lang_detect_config = config["agents"]["language_detection"]
translation_config = config["agents"]["translation"]
sentiment_config = config["agents"]["sentiment_analysis"]
# Initialize agents
self.language_agent = LanguageDetectionAgent(lang_detect_config, api_key)
self.translation_agent = TranslationAgent(translation_config, api_key)
self.sentiment_agent = SentimentAnalysisAgent(sentiment_config, api_key, sentiment_categories)
# Build workflow graph
self.workflow = self._build_workflow()
```
2. **Workflow Graph** (`_build_workflow()`):
```python
workflow = StateGraph(CommentState)
# Add nodes (agents)
workflow.add_node("language_detection", self._language_detection_node)
workflow.add_node("translation", self._translation_node)
workflow.add_node("sentiment_analysis", self._sentiment_analysis_node)
# Define edges (control flow)
workflow.set_entry_point("language_detection")
workflow.add_conditional_edges(
"language_detection",
self._should_translate,
{"translate": "translation", "skip_translation": "sentiment_analysis"}
)
workflow.add_edge("translation", "sentiment_analysis")
workflow.add_edge("sentiment_analysis", END)
return workflow.compile()
```
3. **Node Execution** (Example: `_language_detection_node`):
```python
def _language_detection_node(self, state: CommentState) -> CommentState:
try:
# Prepare input
input_data = {"comment_text": state["comment_text"]}
# Process with agent
result = self.language_agent.process(input_data)
# Update state
if result.get("success", False):
state["language"] = result.get("language", "English")
state["language_code"] = result.get("language_code", "en")
state["is_english"] = result.get("is_english", True)
# ... more fields
else:
# Handle error, set defaults
state["processing_errors"].append(result.get("error"))
return state
except Exception as e:
# Error handling
state["processing_errors"].append(str(e))
return state
```
4. **Decision Points** (Example: `_should_translate`):
```python
def _should_translate(self, state: CommentState) -> str:
if state.get("is_english", True) or not state.get("has_text", True):
# Set defaults for skipped translation
state["translated_text"] = state["comment_text"]
state["translation_performed"] = False
return "skip_translation"
else:
return "translate"
```
5. **Comment Processing** (`process_comment()`):
```python
def process_comment(self, comment_data: Dict) -> Dict:
# Initialize state
initial_state = {
"comment_sk": comment_data.get("comment_sk"),
"comment_text": comment_data.get("comment_text"),
# ... all fields
"processing_errors": [],
"success": True
}
# Run workflow
final_state = self.workflow.invoke(initial_state)
# Merge and return
return dict(final_state)
```
### State Management
The workflow uses a `CommentState` TypedDict to pass data between agents:
```python
class CommentState(TypedDict):
# Input fields
comment_sk: int
comment_id: str
comment_text: str
# ... more fields
# Processing fields (populated by agents)
language: str
language_code: str
is_english: bool
translated_text: str
sentiment_polarity: str
intent: str
# ... more fields
# Metadata
processing_errors: Annotated[List[str], operator.add]
success: bool
```
### Error Handling Strategy
1. **Agent Level**: Each agent returns `{"success": False, "error": "..."}` on failure
2. **Node Level**: Nodes catch exceptions, set defaults, append to `processing_errors`
3. **Workflow Level**: Workflow continues even if an agent fails (graceful degradation)
4. **Critical Failures**: Sentiment agent marks `success=False` if critical fields missing (comment not stored)
## Adding New Agents
### Step-by-Step Guide
#### Step 1: Create the Agent Class
Create a new file in the `agents/` directory (e.g., `topic_classification_agent.py`):
```python
"""
Topic Classification Agent
Extracts topics and themes from comments
"""
from typing import Dict, Any
import json
from langchain_openai import ChatOpenAI
from langchain.schema import HumanMessage, SystemMessage
from agents.base_agent import BaseAgent
import logging
logger = logging.getLogger(__name__)
class TopicClassificationAgent(BaseAgent):
"""
Agent that classifies comments into predefined topics/themes.
"""
def __init__(self, config: Dict[str, Any], api_key: str, topic_categories: Dict[str, Any]):
"""
Initialize the Topic Classification Agent.
Args:
config: Configuration dictionary
api_key: OpenAI API key
topic_categories: Dictionary with topic categories
"""
super().__init__("TopicClassificationAgent", config)
self.api_key = api_key
self.topic_categories = topic_categories
self.llm = ChatOpenAI(
model=self.model,
temperature=self.temperature,
api_key=self.api_key
)
def validate_input(self, input_data: Dict[str, Any]) -> bool:
"""
Validate that input contains required fields.
Args:
input_data: Input dictionary
Returns:
True if valid, False otherwise
"""
required_fields = ["comment_text"]
return all(field in input_data for field in required_fields)
def classify_topics(self, comment_text: str) -> Dict[str, Any]:
"""
Classify comment into topics using LLM.
Args:
comment_text: The comment text to analyze
Returns:
Dictionary with topic classification results
"""
# Build topic options from config
topic_options = "\n".join([
f"- {cat['value']}: {cat['description']}"
for cat in self.topic_categories["topics"]["categories"]
])
system_prompt = f"""You are an expert at classifying music-related comments into topics.
Available Topics:
{topic_options}
Return your response in JSON format with the following fields:
- topics: array of topic values (multi-label, can have multiple topics)
- confidence: your confidence level (high, medium, low)
- reasoning: brief explanation of your classification
"""
user_prompt = f"""Classify this comment into relevant topics:
Comment: "{comment_text}"
Return JSON only."""
try:
messages = [
SystemMessage(content=system_prompt),
HumanMessage(content=user_prompt)
]
response = self.llm.invoke(messages)
result = self._parse_llm_json_response(response.content)
topics = result.get("topics", [])
if isinstance(topics, str):
topics = [topics]
topic_str = ", ".join(topics) if topics else None
return {
"success": True,
"topics": topic_str,
"topic_confidence": result.get("confidence", "medium"),
"topic_reasoning": result.get("reasoning", "")
}
except json.JSONDecodeError as e:
self.log_processing(f"JSON decode error: {str(e)}", "warning")
return {
"success": False,
"error": str(e)
}
except Exception as e:
self.log_processing(f"Topic classification failed: {str(e)}", "error")
return {
"success": False,
"error": str(e)
}
def process(self, input_data: Dict[str, Any]) -> Dict[str, Any]:
"""
Process comment and extract topics.
Args:
input_data: Dictionary containing comment data
Returns:
Dictionary with topic classification results
"""
try:
# Validate input
if not self.validate_input(input_data):
return {
"success": False,
"error": "Invalid input: missing required fields"
}
comment_text = input_data["comment_text"]
self.log_processing(f"Classifying topics for comment", "debug")
# Perform classification
classification_result = self.classify_topics(comment_text)
result = {
"success": classification_result.get("success", False),
"topics": classification_result.get("topics"),
"topic_confidence": classification_result.get("topic_confidence"),
"topic_reasoning": classification_result.get("topic_reasoning", "")
}
if "error" in classification_result:
result["topic_error"] = classification_result["error"]
# Preserve all original data
for key, value in input_data.items():
if key not in result:
result[key] = value
return result
except Exception as e:
return self.handle_error(e, "topic_classification")
def _parse_llm_json_response(self, response_content: str) -> Dict[str, Any]:
"""
Parse LLM response that may contain JSON wrapped in markdown code blocks.
Args:
response_content: Raw response content from LLM
Returns:
Parsed JSON dictionary
Raises:
json.JSONDecodeError: If JSON cannot be parsed
"""
content = response_content.strip()
# Check if response is wrapped in markdown code block
if content.startswith("```json"):
content = content[7:]
if content.endswith("```"):
content = content[:-3]
content = content.strip()
elif content.startswith("```"):
content = content[3:]
if content.endswith("```"):
content = content[:-3]
content = content.strip()
return json.loads(content)
```
#### Step 2: Update `__init__.py`
Add your agent to `agents/__init__.py`:
```python
"""
Agents module for the sentiment analysis workflow.
Provides modular, extensible agents for various NLP tasks.
"""
from agents.base_agent import BaseAgent
from agents.language_detection_agent import LanguageDetectionAgent
from agents.translation_agent import TranslationAgent
from agents.sentiment_analysis_agent import SentimentAnalysisAgent
from agents.topic_classification_agent import TopicClassificationAgent # ADD THIS
__all__ = [
"BaseAgent",
"LanguageDetectionAgent",
"TranslationAgent",
"SentimentAnalysisAgent",
"TopicClassificationAgent" # ADD THIS
]
```
#### Step 3: Update Configuration Files
Add agent configuration to `config_files/sentiment_config.json`:
```json
{
"agents": {
"language_detection": { ... },
"translation": { ... },
"sentiment_analysis": { ... },
"topic_classification": {
"name": "TopicClassificationAgent",
"model": "gpt-5-nano",
"temperature": 0.2,
"max_retries": 3,
"description": "Classifies comments into topic categories"
}
}
}
```
Create topic categories config (or add to existing `sentiment_analysis_config.json`):
```json
{
"topics": {
"categories": [
{
"value": "technique",
"label": "Technique",
"description": "Playing technique, finger positioning, hand coordination"
},
{
"value": "theory",
"label": "Music Theory",
"description": "Scales, chords, harmony, composition theory"
},
{
"value": "equipment",
"label": "Equipment",
"description": "Instruments, gear, accessories, software"
},
{
"value": "performance",
"label": "Performance",
"description": "Stage presence, live playing, performance anxiety"
},
{
"value": "practice",
"label": "Practice",
"description": "Practice routines, discipline, improvement tips"
}
]
}
}
```
#### Step 4: Update Workflow State
Add fields to `CommentState` in `workflow/comment_processor.py`:
```python
class CommentState(TypedDict):
# ... existing fields ...
# Topic classification fields
topics: str
topic_confidence: str
topic_reasoning: str
```
#### Step 5: Add Workflow Node
Add the node method to `CommentProcessingWorkflow` class:
```python
def _topic_classification_node(self, state: CommentState) -> CommentState:
"""
Node for topic classification.
Args:
state: Current workflow state
Returns:
Updated state with topic classification results
"""
try:
# Prepare input
input_data = {
"comment_text": state.get("translated_text", state["comment_text"])
}
# Process with topic classification agent
result = self.topic_agent.process(input_data)
# Update state
if result.get("success", False):
state["topics"] = result.get("topics")
state["topic_confidence"] = result.get("topic_confidence")
state["topic_reasoning"] = result.get("topic_reasoning", "")
else:
error_msg = f"Topic classification failed: {result.get('error', 'Unknown error')}"
state["processing_errors"] = state.get("processing_errors", []) + [error_msg]
state["topics"] = None
state["topic_confidence"] = None
state["topic_reasoning"] = "Topic classification failed"
logger.debug(f"Topics: {state['topics']}")
return state
except Exception as e:
error_msg = f"Topic classification node error: {str(e)}"
logger.error(error_msg)
state["processing_errors"] = state.get("processing_errors", []) + [error_msg]
state["topics"] = None
state["topic_confidence"] = None
state["topic_reasoning"] = "Error during topic classification"
return state
```
#### Step 6: Initialize Agent in Workflow
Update `__init__` method:
```python
def __init__(self, config: Dict[str, Any], api_key: str):
# ... existing initialization ...
# Load topic categories
topic_categories_path = config.get("topic_categories_config", "config_files/topic_categories.json")
with open(topic_categories_path, 'r') as f:
topic_categories = json.load(f)
# Initialize topic agent
topic_config = config["agents"]["topic_classification"]
self.topic_agent = TopicClassificationAgent(topic_config, api_key, topic_categories)
```
#### Step 7: Update Workflow Graph
Modify `_build_workflow()`:
```python
def _build_workflow(self) -> StateGraph:
workflow = StateGraph(CommentState)
# Add nodes
workflow.add_node("language_detection", self._language_detection_node)
workflow.add_node("translation", self._translation_node)
workflow.add_node("sentiment_analysis", self._sentiment_analysis_node)
workflow.add_node("topic_classification", self._topic_classification_node) # ADD THIS
# Define edges
workflow.set_entry_point("language_detection")
workflow.add_conditional_edges(
"language_detection",
self._should_translate,
{"translate": "translation", "skip_translation": "sentiment_analysis"}
)
workflow.add_edge("translation", "sentiment_analysis")
workflow.add_edge("sentiment_analysis", "topic_classification") # ADD THIS
workflow.add_edge("topic_classification", END) # MODIFY THIS
return workflow.compile()
```
#### Step 8: Update Database Schema
Add columns to your Snowflake table:
```sql
ALTER TABLE COMMENT_SENTIMENT_FEATURES
ADD COLUMN TOPICS VARCHAR(500),
ADD COLUMN TOPIC_CONFIDENCE VARCHAR(20),
ADD COLUMN TOPIC_REASONING VARCHAR(1000);
```
#### Step 9: Test Your Agent
Test with a small batch first:
```bash
python main.py --limit 10 --sequential
```
Check logs for any errors and verify output in Snowflake.
### Quick Checklist for Adding New Agents
- [ ] Create agent class inheriting from `BaseAgent`
- [ ] Implement `validate_input()` method
- [ ] Implement `process()` method
- [ ] Implement `_parse_llm_json_response()` if using LLM
- [ ] Add agent to `agents/__init__.py`
- [ ] Add configuration to `sentiment_config.json`
- [ ] Create/update category config file if needed
- [ ] Add fields to `CommentState` TypedDict
- [ ] Create node method in `CommentProcessingWorkflow`
- [ ] Initialize agent in `__init__`
- [ ] Add node to workflow graph
- [ ] Update edges in workflow
- [ ] Update database schema
- [ ] Test with small batch
## Modifying Existing Agents
### Common Modifications
#### 1. Change LLM Model
Update `config_files/sentiment_config.json`:
```json
{
"agents": {
"sentiment_analysis": {
"model": "gpt-4o", // Change from gpt-5-nano
"temperature": 0.2,
"max_retries": 3
}
}
}
```
No code changes needed! Configuration is loaded dynamically.
#### 2. Add New Sentiment Category
Update `config_files/sentiment_analysis_config.json`:
```json
{
"sentiment_polarity": {
"categories": [
// ... existing categories ...
{
"value": "mixed",
"label": "Mixed",
"description": "Contains both positive and negative elements"
}
]
}
}
```
The agent will automatically include this in prompts. No code changes needed.
#### 3. Add New Intent Category
Update `config_files/sentiment_analysis_config.json`:
```json
{
"intent": {
"categories": [
// ... existing categories ...
{
"value": "collaboration",
"label": "Collaboration",
"description": "Seeking or offering collaboration opportunities"
}
]
}
}
```
#### 4. Modify Reply Policy
Update `config_files/sentiment_analysis_config.json`:
```json
{
"reply_policy": {
"requires_reply_intents": ["question", "request", "feedback_negative"], // Added feedback_negative
"not_include": ["humor_sarcasm", "spam_selfpromo"] // Added spam_selfpromo
}
}
```
#### 5. Adjust Temperature for Better Results
If getting inconsistent results, adjust temperature:
```json
{
"agents": {
"sentiment_analysis": {
"model": "gpt-5-nano",
"temperature": 0.1, // Lower = more consistent, less creative
"max_retries": 3
}
}
}
```
#### 6. Add Context to Sentiment Analysis
Modify `_build_context_string()` in `sentiment_analysis_agent.py`:
```python
def _build_context_string(self, content_description: str, parent_comment_text: str = None,
platform: str = None, content_title: str = None,
channel_name: str = None) -> str: # ADD channel_name
"""Build context string for sentiment analysis."""
context_parts = []
# ... existing code ...
# ADD THIS
if channel_name:
context_parts.append(f"Channel: {channel_name}")
return "\n".join(context_parts)
```
Then update the `analyze_sentiment()` method to accept and pass `channel_name`.
#### 7. Improve Language Detection Accuracy
Modify `language_detection_agent.py` to add more languages to LINGUA_TO_ISO:
```python
LINGUA_TO_ISO = {
# ... existing mappings ...
Language.VIETNAMESE: "vi",
Language.THAI: "th",
Language.INDONESIAN: "id",
# Add more as needed
}
```
#### 8. Customize Translation Prompt
Modify `translate_text()` in `translation_agent.py`:
```python
system_prompt = """You are a professional translator specializing in social media content related to music and education.
Translate the given text from the source language to English. The text is a comment on a musical content.
Preserve the tone, intent, and any emojis or special characters.
For informal social media language, maintain the casual tone in translation.
// ADD THESE GUIDELINES:
Special Instructions:
- Preserve musical terminology (e.g., "legato", "staccato") untranslated
- Translate instrument names (e.g., "guitarra" β "guitar")
- Keep artist names and brand names in original language
- Maintain slang and colloquialisms when possible
Return your response in JSON format with the following fields:
- translated_text: The English translation
- translation_confidence: Your confidence level (high, medium, low)
- notes: Any important notes about the translation (optional)
"""
```
#### 9. Add Retry Logic for Failed Analyses
Modify `process()` in `sentiment_analysis_agent.py`:
```python
def process(self, input_data: Dict[str, Any]) -> Dict[str, Any]:
try:
# ... existing validation code ...
# ADD RETRY LOGIC
max_attempts = self.max_retries
for attempt in range(max_attempts):
analysis_result = self.analyze_sentiment(
comment_text, content_description,
parent_comment_text, platform, content_title
)
if analysis_result.get("success"):
break
if attempt < max_attempts - 1:
self.log_processing(f"Attempt {attempt + 1} failed, retrying...", "warning")
# ... rest of existing code ...
```
#### 10. Add Custom Validation Rules
Modify `validate_input()` in any agent:
```python
def validate_input(self, input_data: Dict[str, Any]) -> bool:
"""Validate that input contains required fields."""
required_fields = ["comment_text", "content_description"]
# Check required fields exist
if not all(field in input_data for field in required_fields):
return False
# ADD CUSTOM VALIDATION
# Ensure comment_text is not empty or too short
comment_text = input_data.get("comment_text", "")
if not comment_text or len(comment_text.strip()) < 2:
self.log_processing("Comment text too short or empty", "warning")
return False
# Ensure content_description exists
content_desc = input_data.get("content_description", "")
if not content_desc or content_desc.strip() == "":
self.log_processing("Content description missing", "warning")
return False
return True
```
### Testing Modified Agents
After making modifications, always test:
```bash
# Test with a small batch
python main.py --limit 10 --sequential
# Check specific data source
python main.py --limit 10 --sequential --data-source social_media
# Review logs for errors
tail -f logs/comment_processing_*.log
```
## Configuration System
### Configuration Files Overview
```
config_files/
βββ sentiment_config.json # Agent behavior config
βββ sentiment_analysis_config.json # Sentiment categories and intents
βββ data_sources_config.json # Data source configuration
```
### Agent Configuration Structure
**File**: `sentiment_config.json`
```json
{
"agents": {
"agent_name": {
"name": "AgentClassName",
"model": "gpt-5-nano", // LLM model to use
"temperature": 0.0, // Creativity (0.0 = deterministic, 1.0 = creative)
"max_retries": 3, // Max retry attempts
"description": "What this agent does"
}
},
"workflow": {
"parallel_processing": {
"enabled": true,
"worker_calculation": "CPU count - 2, max 5 workers",
"min_batch_size": 20,
"max_batch_size": 1000
}
}
}
```
### Temperature Guidelines
- **0.0 - 0.1**: Deterministic, consistent (good for classification)
- **0.2 - 0.4**: Slight variation, mostly consistent (good for sentiment analysis)
- **0.5 - 0.7**: Balanced creativity and consistency (good for translation)
- **0.8 - 1.0**: Creative, varied (good for content generation)
### Model Selection Guidelines
- **gpt-5-nano**: Fast, cheap, good for simple tasks
- **gpt-4o-mini**: Balanced speed/quality, good for most tasks
- **gpt-4o**: High quality, slower, good for complex analysis
### Category Configuration Structure
**File**: `sentiment_analysis_config.json`
```json
{
"category_type": {
"categories": [
{
"value": "machine_readable_value", // Used in code/DB
"label": "Human Readable Label", // Used in UI
"description": "Detailed description for LLM prompt"
}
]
}
}
```
### Loading Configuration in Code
```python
# In workflow/__init__ or agent __init__
import json
import os
# Load agent config
with open('config_files/sentiment_config.json', 'r') as f:
config = json.load(f)
agent_config = config["agents"]["agent_name"]
# Load category config
with open('config_files/sentiment_analysis_config.json', 'r') as f:
categories = json.load(f)
sentiment_categories = categories["sentiment_polarity"]["categories"]
```
## Best Practices
### Agent Development
1. **Single Responsibility**: Each agent should do one thing well
2. **Fail Gracefully**: Always return structured error responses
3. **Preserve Data**: Never lose original input data - pass it through
4. **Log Everything**: Use `log_processing()` for debugging
5. **Validate Early**: Check inputs before processing
6. **Configuration Over Code**: Use config files for behavior changes
7. **Test Incrementally**: Test with `--limit 10 --sequential` first
### Prompt Engineering
1. **Be Specific**: Clearly define expected output format
2. **Use Examples**: Include few-shot examples in prompts
3. **Request JSON**: Always request JSON format for structured data
4. **Handle Edge Cases**: Document edge cases in prompts
5. **Provide Context**: Give LLM all relevant context
6. **Set Constraints**: Clearly define boundaries and limitations
Example of good prompt structure:
```python
system_prompt = """You are an expert at [TASK].
Your task is to:
1. [Step 1]
2. [Step 2]
3. [Step 3]
Context: [Explain the context]
Rules:
- Rule 1
- Rule 2
- Rule 3
Examples:
- Input: "..." β Output: {...}
- Input: "..." β Output: {...}
Return your response in JSON format with the following fields:
- field1: description
- field2: description
"""
```
### Error Handling
1. **Try-Catch Everything**: Wrap all processing in try-catch
2. **Specific Error Messages**: Make errors actionable
3. **Graceful Degradation**: Continue workflow even if one agent fails
4. **Error Accumulation**: Collect errors in `processing_errors` list
5. **Critical vs Non-Critical**: Distinguish between recoverable and fatal errors
Example:
```python
def process(self, input_data: Dict[str, Any]) -> Dict[str, Any]:
try:
# Validate
if not self.validate_input(input_data):
return {
"success": False,
"error": "Invalid input: missing required fields",
**input_data # Preserve original data
}
# Process
result = self.do_processing(input_data)
# Check result
if not result.get("success"):
return {
"success": False,
"error": result.get("error", "Unknown error"),
**input_data
}
# Return success
return {
"success": True,
"output_field": result["output"],
**input_data
}
except Exception as e:
return self.handle_error(e, "process")
```
### Testing
1. **Unit Test Agents**: Test agents independently before integration
2. **Small Batches**: Always test with `--limit 10` first
3. **Sequential Mode**: Use `--sequential` for debugging
4. **Check Logs**: Review logs after every test run
5. **Validate Output**: Check Snowflake results
6. **Test Edge Cases**: Empty text, emojis only, very long text, special characters
Test script example:
```python
# test_agent.py
from agents.sentiment_analysis_agent import SentimentAnalysisAgent
import json
# Load config
with open('config_files/sentiment_config.json', 'r') as f:
config = json.load(f)
with open('config_files/sentiment_analysis_config.json', 'r') as f:
categories = json.load(f)
# Initialize agent
agent = SentimentAnalysisAgent(
config["agents"]["sentiment_analysis"],
"your-api-key",
categories
)
# Test cases
test_cases = [
{"comment_text": "This is amazing!", "content_description": "Guitar tutorial"},
{"comment_text": "πππ", "content_description": "Piano cover"},
{"comment_text": "What scale is this?", "content_description": "Blues solo"},
]
for test in test_cases:
result = agent.process(test)
print(f"Input: {test['comment_text']}")
print(f"Result: {result}")
print("---")
```
### Performance Optimization
1. **Batch Processing**: Process comments in batches (handled by workflow)
2. **Parallel Workers**: Use multiprocessing for large batches
3. **Minimize LLM Calls**: Cache results when possible
4. **Optimize Prompts**: Shorter prompts = faster responses
5. **Choose Right Model**: Use gpt-5-nano for simple tasks
### Code Organization
1. **One Agent Per File**: Don't combine multiple agents
2. **Helper Methods**: Use private methods (\_method\_name) for internal logic
3. **Type Hints**: Always use type hints for parameters and returns
4. **Docstrings**: Document all public methods
5. **Constants**: Define constants at class level
Example structure:
```python
class MyAgent(BaseAgent):
# Constants
DEFAULT_VALUE = "default"
MAX_LENGTH = 1000
def __init__(self, config, api_key):
"""Initialize agent."""
super().__init__("MyAgent", config)
# ... initialization
def validate_input(self, input_data: Dict[str, Any]) -> bool:
"""Validate input data."""
# ... validation
def process(self, input_data: Dict[str, Any]) -> Dict[str, Any]:
"""Main processing method."""
# ... processing
def _helper_method(self, data: str) -> str:
"""Private helper method."""
# ... helper logic
def _parse_llm_json_response(self, response: str) -> Dict[str, Any]:
"""Parse LLM JSON response."""
# ... parsing
```
## Troubleshooting
### Common Issues
#### Issue 1: Agent Returns Empty Results
**Symptoms**: Agent succeeds but returns None or empty strings for key fields
**Causes**:
- LLM not following JSON format
- JSON parsing failing silently
- Missing fields in LLM response
**Solutions**:
1. Check logs for JSON parsing warnings
2. Add validation after LLM call:
```python
result = self._parse_llm_json_response(response.content)
# Validate result
if not result.get("sentiment_polarity"):
return {
"success": False,
"error": "Missing sentiment_polarity in LLM response"
}
```
3. Improve prompt to be more specific about required fields
4. Add examples to prompt showing exact JSON structure
#### Issue 2: JSON Parsing Errors
**Symptoms**: `JSON decode error` in logs
**Causes**:
- LLM returns markdown-wrapped JSON
- LLM includes explanatory text before/after JSON
- Malformed JSON from LLM
**Solutions**:
1. Use `_parse_llm_json_response()` helper (already handles markdown)
2. Add more explicit prompt:
```python
user_prompt = """...
Return ONLY valid JSON, no explanation or markdown. Just the raw JSON object.
"""
```
3. Add fallback parsing:
```python
try:
result = json.loads(content)
except json.JSONDecodeError:
# Try to extract JSON from text
import re
json_match = re.search(r'\{.*\}', content, re.DOTALL)
if json_match:
result = json.loads(json_match.group())
else:
raise
```
#### Issue 3: Inconsistent Results
**Symptoms**: Same comment gets different classifications on reruns
**Causes**:
- Temperature too high
- Prompt too vague
- Model inconsistency
**Solutions**:
1. Lower temperature to 0.0 - 0.2 for classification tasks
2. Make prompt more specific and rule-based
3. Add examples to prompt
4. Use a more consistent model (gpt-5-nano vs gpt-4o)
#### Issue 4: Agent Too Slow
**Symptoms**: Processing takes very long
**Causes**:
- Large LLM model
- Complex prompts
- Sequential processing
- API rate limits
**Solutions**:
1. Use faster model (gpt-5-nano instead of gpt-4o)
2. Simplify prompt (shorter = faster)
3. Enable parallel processing (already default)
4. Increase batch size (if not hitting rate limits)
5. Consider caching repeated analyses
#### Issue 5: Agent Failing Validation
**Symptoms**: `validate_input()` returns False, agent skips processing
**Causes**:
- Missing required fields in input
- Empty or None values
- Wrong data types
**Solutions**:
1. Check workflow node - ensure all required fields passed:
```python
input_data = {
"comment_text": state.get("translated_text", state["comment_text"]),
"content_description": state["content_description"],
# Add all required fields
}
```
2. Add logging to validation:
```python
def validate_input(self, input_data: Dict[str, Any]) -> bool:
for field in required_fields:
if field not in input_data:
self.log_processing(f"Missing field: {field}", "error")
return False
return True
```
#### Issue 6: Workflow Not Running New Agent
**Symptoms**: New agent not being called, no logs from new agent
**Causes**:
- Forgot to add node to workflow graph
- Forgot to initialize agent
- Workflow edges not connected
**Solutions**:
1. Verify agent initialized in `__init__`:
```python
self.new_agent = NewAgent(config, api_key)
```
2. Verify node added:
```python
workflow.add_node("new_agent", self._new_agent_node)
```
3. Verify edges:
```python
workflow.add_edge("previous_agent", "new_agent")
workflow.add_edge("new_agent", END)
```
4. Check for exceptions in workflow compilation
#### Issue 7: Database Insert Fails
**Symptoms**: Processing succeeds but data not in Snowflake
**Causes**:
- Missing columns in database
- Data type mismatch
- Field name mismatch
**Solutions**:
1. Check column exists:
```sql
DESC TABLE COMMENT_SENTIMENT_FEATURES;
```
2. Add column if missing:
```sql
ALTER TABLE COMMENT_SENTIMENT_FEATURES
ADD COLUMN NEW_FIELD VARCHAR(500);
```
3. Check field names match exactly (case-sensitive)
4. Check main.py result_df construction includes new fields
### Debugging Tips
1. **Enable Debug Logging**: Set log level to DEBUG in main.py
2. **Print State**: Add print statements in workflow nodes to see state
3. **Test Agent Directly**: Test agent outside workflow first
4. **Use Sequential Mode**: `--sequential` flag for clearer debugging
5. **Check API Logs**: Review OpenAI API dashboard for errors
6. **Validate JSON**: Use online JSON validator for config files
7. **Check Git Status**: Ensure all files saved and changes committed
### Getting Help
1. **Check Logs**: Always check `logs/` directory first
2. **Review This README**: Answers to most questions are here
3. **Test Incrementally**: Isolate the problem to one agent
4. **Use Small Batches**: Test with `--limit 5` for faster iteration
5. **Document Issues**: Keep notes on what you tried
## Conclusion
This agent architecture provides a flexible, maintainable foundation for processing social media comments. Key takeaways:
- **Base class pattern** ensures consistency
- **LangGraph workflow** enables flexible orchestration
- **Configuration-driven** design minimizes code changes
- **Error resilience** at every level
- **Extensible by design** - easy to add new agents
For questions or issues, refer to the main project README or review the existing agent implementations for patterns and examples.
---
**Last Updated**: 2026-01-15
**Version**: 1.0
**Maintainer**: Musora Development Team
|