Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.11-slim

WORKDIR /app

COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

EXPOSE 7860

CMD ["python", "app.py"]
Binary file added encoders.pkl
Binary file not shown.
2 changes: 2 additions & 0 deletions flagged/log.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Project Type,Team Size,Performance Need,Experience Level,output,flag,username,timestamp
Real-time App,3,High,Expert,🔧 Recommended Tech Stack: Node.js + Redis,,,2025-11-24 15:31:40.554013
Binary file added model.pkl
Binary file not shown.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ scikit-learn==1.3.2
pandas==2.1.4
numpy==1.26.4
gradio==4.44.1
huggingface-hub==0.25.1