Skip to content

Commit 29b01fa

Browse files
committed
fix project file architecture
1 parent ebf018b commit 29b01fa

117 files changed

Lines changed: 3415 additions & 1570 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
.env
2-
backend/database/
3-
backend/tests/test_database/
4-
backend/logs/
52
frontend/dist/
63
node_modules/
74
__pycache__/
85
*.pyc
9-
.pytest_cache/
6+
.pytest_cache/

backend/.coverage

-52 KB
Binary file not shown.

backend/app/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# MediGenius backend app package
-5.48 KB
Binary file not shown.
-2.99 KB
Binary file not shown.

backend/app/agents/__init__.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
"""
2+
MediGenius — agents/__init__.py
3+
Exports all agent node functions for easy import.
4+
"""
5+
6+
from app.agents.executor import ExecutorAgent
7+
from app.agents.explanation import ExplanationAgent
8+
from app.agents.llm_agent import LLMAgent
9+
from app.agents.memory import MemoryAgent
10+
from app.agents.planner import PlannerAgent
11+
from app.agents.retriever import RetrieverAgent
12+
from app.agents.tavily import TavilyAgent
13+
from app.agents.wikipedia import WikipediaAgent
14+
15+
__all__ = [
16+
"MemoryAgent",
17+
"PlannerAgent",
18+
"RetrieverAgent",
19+
"LLMAgent",
20+
"WikipediaAgent",
21+
"TavilyAgent",
22+
"ExecutorAgent",
23+
"ExplanationAgent",
24+
]
-181 Bytes
Binary file not shown.
-3.08 KB
Binary file not shown.
-395 Bytes
Binary file not shown.
-1.79 KB
Binary file not shown.

0 commit comments

Comments
 (0)