Skip to content

Commit 627c8b9

Browse files
committed
refactor: rename project from VidInsight to AI-Video-Comment-Analyzer
Rename all references to match repository name for consistency. Updated package name, API title, frontend branding, database file, and documentation.
1 parent 571ab8f commit 627c8b9

File tree

14 files changed

+61
-61
lines changed

14 files changed

+61
-61
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# VidInsight
1+
# AI-Video-Comment-Analyzer
22

33
AI-powered YouTube comment analysis tool with sentiment detection, topic modeling, and aspect-based analysis.
44

@@ -66,7 +66,7 @@ API available at [http://localhost:8000](http://localhost:8000)
6666
## Project Structure
6767

6868
```
69-
vidinsight/
69+
AI-Video-Comment-Analyzer/
7070
├── src/ # Next.js frontend
7171
│ ├── components/ # React components
7272
│ │ ├── charts/ # Recharts visualizations

api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# VidInsight API Package
1+
# AI-Video-Comment-Analyzer API Package

api/db/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Database module for VidInsight.
2+
Database module for AI-Video-Comment-Analyzer.
33
"""
44

55
from .database import Base, engine, get_db, init_db

api/db/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from sqlalchemy import create_engine
66
from sqlalchemy.orm import declarative_base, sessionmaker
77

8-
DATABASE_URL = "sqlite:///./vidinsight.db"
8+
DATABASE_URL = "sqlite:///./ai-video-comment-analyzer.db"
99

1010
engine = create_engine(
1111
DATABASE_URL,

api/db/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
SQLAlchemy database models for VidInsight.
2+
SQLAlchemy database models for AI-Video-Comment-Analyzer.
33
"""
44

55
from datetime import datetime

api/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async def lifespan(app: FastAPI):
1414

1515

1616
app = FastAPI(
17-
title="VidInsight API",
17+
title="AI-Video-Comment-Analyzer API",
1818
description="YouTube comment analysis API that extracts, categorizes, and prioritizes audience feedback",
1919
version="0.1.0",
2020
lifespan=lifespan,
@@ -35,7 +35,7 @@ async def lifespan(app: FastAPI):
3535

3636
@app.get("/")
3737
async def root():
38-
return {"message": "VidInsight API", "version": "0.1.0"}
38+
return {"message": "AI-Video-Comment-Analyzer API", "version": "0.1.0"}
3939

4040

4141
@app.get("/health")

api/services/insights.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Insights Service - Intelligence Layer for VidInsight
2+
Insights Service - Intelligence Layer for AI-Video-Comment-Analyzer
33
44
Provides:
55
- Actionable recommendations based on ABSA results

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "vidinsight"
6+
name = "ai-video-comment-analyzer"
77
version = "0.1.0"
88
description = "YouTube comment analysis tool that extracts, categorizes, and prioritizes audience feedback"
99
readme = "README.md"

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const geistMono = Geist_Mono({
1313
});
1414

1515
export const metadata: Metadata = {
16-
title: "VidInsight",
16+
title: "AI-Video-Comment-Analyzer",
1717
description: "YouTube comment analysis tool that extracts, categorizes, and prioritizes audience feedback",
1818
};
1919

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export default function Home() {
180180
<div className="h-full flex items-center justify-center">
181181
<div className="w-full max-w-xl space-y-6">
182182
<div className="text-center">
183-
<h1 className="text-3xl font-bold tracking-tight">VidInsight</h1>
183+
<h1 className="text-3xl font-bold tracking-tight">AI-Video-Comment-Analyzer</h1>
184184
<p className="mt-2 text-muted-foreground">
185185
AI-powered YouTube comment analysis with sentiment detection and topic modeling
186186
</p>

0 commit comments

Comments
 (0)