feat(frontend): add 3d interaction graph

This commit is contained in:
2026-02-16 17:03:51 +00:00
parent 7c1e069152
commit 4f577abd4f
6 changed files with 385 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ app = Flask(__name__)
CORS(app, resources={r"/*": {"origins": "http://localhost:5173"}})
# Global State
posts_df = pd.read_json('posts.jsonl', lines=True)
posts_df = pd.read_json('small.jsonl', lines=True)
with open("topic_buckets.json", "r", encoding="utf-8") as f:
domain_topics = json.load(f)
stat_obj = StatGen(posts_df, domain_topics)