Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
1c09fe8
feat: separated KnowledgeAgent and implemented full RAG pipeline
hardik1712 Nov 10, 2025
c00fd10
Added Knowledge Agent RAG + LLaMA integration
hardik1712 Dec 7, 2025
5acdfe5
modify gitignore
Tirath5504 Dec 11, 2025
24a9005
integrate patient agent properly
Tirath5504 Dec 11, 2025
0d953f6
create final interface
Tirath5504 Dec 11, 2025
584d15d
enhance interface
Tirath5504 Dec 11, 2025
f59d9af
integrate all models
Tirath5504 Dec 11, 2025
1ec9d4e
restructure the repository entirely
Tirath5504 Dec 11, 2025
9a1737f
fix: correct HypercolumnCBAMDenseNet architecture to match training c…
Tirath5504 Dec 11, 2025
636d2a0
add retrain_densenet169 outputs
Tirath5504 Dec 11, 2025
3ac12aa
ensure correct weightage given to models
Tirath5504 Dec 11, 2025
3f85799
update readme
Tirath5504 Dec 11, 2025
c02f5c7
add diagrams
Tirath5504 Dec 11, 2025
66240f5
replace ollama with openrouter
Tirath5504 Dec 11, 2025
b57f335
getting repo ready for deployment
Tirath5504 Dec 11, 2025
d86ff11
Configure Streamlit Cloud deployment with HuggingFace model hosting
Tirath5504 Dec 11, 2025
0213a65
Fix: use grad-cam instead of pytorch-grad-cam for Python 3.13 compati…
Tirath5504 Dec 11, 2025
40d61ee
feat: Complete Next.js website and HF backend with multi-agent system
Tirath5504 Dec 12, 2025
8f488a2
modify gitignore
Tirath5504 Dec 12, 2025
f4a461f
add conformal prediction changes
Tirath5504 Jan 12, 2026
26e6ec1
fix conformal prediction edits
Tirath5504 Jan 13, 2026
93c9707
remove website as a separate repo
Tirath5504 Feb 7, 2026
27c643b
integrate critic agent
Tirath5504 Feb 11, 2026
5795208
integrate oblique fix
Tirath5504 Feb 12, 2026
b0beca6
edit chat model
Tirath5504 Feb 13, 2026
7d9c472
replace openrouter with gemini api
Tirath5504 Feb 14, 2026
2314f76
Add dataset splitting and augmentation notebook
hardik1712 Feb 17, 2026
6c61524
add proper RAG via gemini
Tirath5504 Feb 17, 2026
ba5e1df
refactor redundant agents as modules
Tirath5504 Feb 17, 2026
6f677b9
integrate langchain and langsmith for extensive tracking
Tirath5504 Feb 17, 2026
c6071b3
Add YOLOv26 training notebook
hardik1712 Feb 18, 2026
cfe913c
train rad-dino
Tirath5504 Feb 21, 2026
9cd6db8
fix multi-agent pipeline
Tirath5504 Feb 21, 2026
8c79a4a
train yolo
Tirath5504 Feb 21, 2026
561e579
integrate yolo and dino-rad
Tirath5504 Feb 21, 2026
c5c91fc
fix integration
Tirath5504 Feb 21, 2026
0ea9976
fix report
Tirath5504 Feb 21, 2026
0507dd4
update readme
Tirath5504 Feb 21, 2026
42e7d1b
fix formatting on website
Tirath5504 Feb 22, 2026
0605f28
modify gitignore
Tirath5504 Feb 22, 2026
71a09c8
add report and diagram
Tirath5504 Feb 22, 2026
47bbf9b
update architecture diagram
Tirath5504 Feb 22, 2026
c072a7d
add plots and results for conformal, critic and grad-cam analysis
Tirath5504 Feb 23, 2026
5106216
add evaluation of roboflow dataset
Tirath5504 Feb 24, 2026
b723491
add plots and results for FracAtlas evaluation
Tirath5504 Feb 24, 2026
0269220
Add stacking ensemble implementation with 4-model and combo tests
hardik1712 Feb 24, 2026
a0f8917
stacking
hardik1712 Feb 24, 2026
5f2cbb2
edit .gitignore
Tirath5504 Feb 26, 2026
0a8ef5b
Revert "add plots and results for FracAtlas evaluation"
Tirath5504 Feb 26, 2026
4aeda1e
Reapply "add plots and results for FracAtlas evaluation"
Tirath5504 Feb 26, 2026
c387bf6
Revert "stacking"
Tirath5504 Feb 26, 2026
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
Binary file modified .gitignore
Binary file not shown.
9 changes: 9 additions & 0 deletions .streamlit/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[theme]
primaryColor = "#4CAF50"
backgroundColor = "#FFFFFF"
secondaryBackgroundColor = "#F5F5F5"
textColor = "#333333"
font = "sans serif"

[server]
maxUploadSize = 50
11 changes: 11 additions & 0 deletions .streamlit/secrets.toml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# MedAI Application Secrets Template
# Copy this file to .streamlit/secrets.toml and add your real API keys
# DO NOT commit secrets.toml with real keys to version control!

# OpenRouter API Configuration
# Get your API key from https://openrouter.ai/keys
openrouter_api_key = "your-openrouter-api-key-here"
openrouter_model = "meta-llama/llama-3.2-3b-instruct:free"

# App Configuration
deployment_mode = "streamlit_cloud"
547 changes: 546 additions & 1 deletion README.md

Large diffs are not rendered by default.

160 changes: 0 additions & 160 deletions TODO.md

This file was deleted.

Loading