Spaces:
Runtime error
Runtime error
Update app.py from anycoder
Browse files
app.py
CHANGED
|
@@ -1154,4 +1154,14 @@ Bias assessment: {analysis['bias_analysis']['overall_lean']}"""
|
|
| 1154 |
"timestamp": datetime.now().isoformat()
|
| 1155 |
}
|
| 1156 |
|
| 1157 |
-
def _generate_uncensored_analysis(self, query: str, base_query: str, depth:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1154 |
"timestamp": datetime.now().isoformat()
|
| 1155 |
}
|
| 1156 |
|
| 1157 |
+
def _generate_uncensored_analysis(self, query: str, base_query: str, depth: int) -> str:
|
| 1158 |
+
"""
|
| 1159 |
+
Generate uncensored, comprehensive deep analysis
|
| 1160 |
+
Provides balanced perspective including controversial viewpoints
|
| 1161 |
+
"""
|
| 1162 |
+
analysis_parts = []
|
| 1163 |
+
|
| 1164 |
+
# Opening comprehensive analysis
|
| 1165 |
+
analysis_parts.append(f"""## Comprehensive Deep Analysis: {query}
|
| 1166 |
+
|
| 1167 |
+
This analysis provides an in-depth examination
|