richlai commited on
Commit
40a928f
·
1 Parent(s): a6626cb
.gitignore ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TypeScript
2
+ node_modules/
3
+ dist/
4
+ *.tsbuildinfo
5
+
6
+ # Python
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+ *.so
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+
29
+ # Virtual Environment
30
+ venv/
31
+ env/
32
+ ENV/
33
+
34
+ # IDEs and Editors
35
+ .vscode/
36
+ .idea/
37
+ *.swp
38
+ *.swo
39
+ *~
40
+
41
+ # OS generated files
42
+ .DS_Store
43
+ .DS_Store?
44
+ ._*
45
+ .Spotlight-V100
46
+ .Trashes
47
+ ehthumbs.db
48
+ Thumbs.db
49
+
50
+ # Logs
51
+ *.log
52
+ npm-debug.log*
53
+ yarn-debug.log*
54
+ yarn-error.log*
55
+
56
+ # Testing
57
+ coverage/
58
+ .nyc_output
59
+ .pytest_cache/
60
+
61
+ # Miscellaneous
62
+ .env
63
+ .env.local
64
+ .env.development.local
65
+ .env.test.local
66
+ .env.production.local
backend/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (234 Bytes)
 
backend/app/__pycache__/__init__.cpython-311.pyc CHANGED
Binary files a/backend/app/__pycache__/__init__.cpython-311.pyc and b/backend/app/__pycache__/__init__.cpython-311.pyc differ
 
backend/app/__pycache__/auth.cpython-311.pyc CHANGED
Binary files a/backend/app/__pycache__/auth.cpython-311.pyc and b/backend/app/__pycache__/auth.cpython-311.pyc differ
 
backend/app/__pycache__/graph.cpython-311.pyc CHANGED
Binary files a/backend/app/__pycache__/graph.cpython-311.pyc and b/backend/app/__pycache__/graph.cpython-311.pyc differ
 
backend/app/__pycache__/main.cpython-311.pyc CHANGED
Binary files a/backend/app/__pycache__/main.cpython-311.pyc and b/backend/app/__pycache__/main.cpython-311.pyc differ
 
backend/app/__pycache__/prompt.cpython-311.pyc DELETED
Binary file (854 Bytes)
 
backend/app/__pycache__/webrtc.cpython-311.pyc CHANGED
Binary files a/backend/app/__pycache__/webrtc.cpython-311.pyc and b/backend/app/__pycache__/webrtc.cpython-311.pyc differ
 
backend/app/agents/__pycache__/medical.cpython-311.pyc CHANGED
Binary files a/backend/app/agents/__pycache__/medical.cpython-311.pyc and b/backend/app/agents/__pycache__/medical.cpython-311.pyc differ
 
backend/app/agents/__pycache__/prompt.cpython-311.pyc CHANGED
Binary files a/backend/app/agents/__pycache__/prompt.cpython-311.pyc and b/backend/app/agents/__pycache__/prompt.cpython-311.pyc differ
 
backend/app/agents/__pycache__/rag.cpython-311.pyc CHANGED
Binary files a/backend/app/agents/__pycache__/rag.cpython-311.pyc and b/backend/app/agents/__pycache__/rag.cpython-311.pyc differ
 
backend/app/agents/__pycache__/supervisor.cpython-311.pyc CHANGED
Binary files a/backend/app/agents/__pycache__/supervisor.cpython-311.pyc and b/backend/app/agents/__pycache__/supervisor.cpython-311.pyc differ
 
backend/app/agents/__pycache__/validation.cpython-311.pyc DELETED
Binary file (1.12 kB)
 
backend/app/agents/__pycache__/verification.cpython-311.pyc CHANGED
Binary files a/backend/app/agents/__pycache__/verification.cpython-311.pyc and b/backend/app/agents/__pycache__/verification.cpython-311.pyc differ
 
backend/app/agents/state/__pycache__/__init__.cpython-311.pyc CHANGED
Binary files a/backend/app/agents/state/__pycache__/__init__.cpython-311.pyc and b/backend/app/agents/state/__pycache__/__init__.cpython-311.pyc differ
 
backend/app/agents/state/__pycache__/state.cpython-311.pyc CHANGED
Binary files a/backend/app/agents/state/__pycache__/state.cpython-311.pyc and b/backend/app/agents/state/__pycache__/state.cpython-311.pyc differ
 
backend/app/upload_pdf/__pycache__/ingest_documents.cpython-311.pyc CHANGED
Binary files a/backend/app/upload_pdf/__pycache__/ingest_documents.cpython-311.pyc and b/backend/app/upload_pdf/__pycache__/ingest_documents.cpython-311.pyc differ
 
backend/app/upload_pdf/__pycache__/questions_agent.cpython-311.pyc CHANGED
Binary files a/backend/app/upload_pdf/__pycache__/questions_agent.cpython-311.pyc and b/backend/app/upload_pdf/__pycache__/questions_agent.cpython-311.pyc differ
 
backend/data/__pycache__/__init__.cpython-311.pyc CHANGED
Binary files a/backend/data/__pycache__/__init__.cpython-311.pyc and b/backend/data/__pycache__/__init__.cpython-311.pyc differ
 
backend/data/preprocessing/__pycache__/ingest_documents.cpython-311.pyc DELETED
Binary file (6.67 kB)
 
backend/data/preprocessing/__pycache__/questions_agent.cpython-311.pyc DELETED
Binary file (3.15 kB)
 
backend/data/preprocessing/vectorstore/__pycache__/get.cpython-311.pyc CHANGED
Binary files a/backend/data/preprocessing/vectorstore/__pycache__/get.cpython-311.pyc and b/backend/data/preprocessing/vectorstore/__pycache__/get.cpython-311.pyc differ
 
frontend/.gitignore DELETED
@@ -1,24 +0,0 @@
1
- # Logs
2
- logs
3
- *.log
4
- npm-debug.log*
5
- yarn-debug.log*
6
- yarn-error.log*
7
- pnpm-debug.log*
8
- lerna-debug.log*
9
-
10
- node_modules
11
- dist
12
- dist-ssr
13
- *.local
14
-
15
- # Editor directories and files
16
- .vscode/*
17
- !.vscode/extensions.json
18
- .idea
19
- .DS_Store
20
- *.suo
21
- *.ntvs*
22
- *.njsproj
23
- *.sln
24
- *.sw?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
frontend/pnpm-lock.yaml CHANGED
The diff for this file is too large to render. See raw diff