-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFile Structure.txt
More file actions
106 lines (106 loc) · 4.06 KB
/
File Structure.txt
File metadata and controls
106 lines (106 loc) · 4.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
./docker-compose.yaml
./init-vector.sql
./frontend/Dockerfile
./frontend/webapp/.env.local
./frontend/webapp/app/favicon.ico
./frontend/webapp/app/chat/[collectionName]/page.tsx
./frontend/webapp/app/chat/new/page.tsx
./frontend/webapp/app/models/Message.tsx
./frontend/webapp/app/components/UseCases.tsx
./frontend/webapp/app/components/Hero.tsx
./frontend/webapp/app/components/UI/card.tsx
./frontend/webapp/app/components/UI/ButtonElem.tsx
./frontend/webapp/app/components/UI/input.tsx
./frontend/webapp/app/components/Features.tsx
./frontend/webapp/app/components/chat/ChatBox.tsx
./frontend/webapp/app/components/chat/InputMessage.tsx
./frontend/webapp/app/components/chat/Messages.tsx
./frontend/webapp/app/components/HowItWorks.tsx
./frontend/webapp/app/components/layout/Navbar.tsx
./frontend/webapp/app/components/Technology.tsx
./frontend/webapp/app/components/Landing.tsx
./frontend/webapp/app/components/upload/Dropzone.tsx
./frontend/webapp/app/components/upload/FileDetails.tsx
./frontend/webapp/app/components/upload/UploadForm.tsx
./frontend/webapp/app/components/upload/ProgressBar.tsx
./frontend/webapp/app/components/upload/CollectionName.tsx
./frontend/webapp/app/components/upload/LinkEnter.tsx
./frontend/webapp/app/components/upload/ModeSelector.tsx
./frontend/webapp/app/hooks/UseUpload.tsx
./frontend/webapp/app/layout.tsx
./frontend/webapp/app/api/ask/route.ts
./frontend/webapp/app/api/upload-status/route.ts
./frontend/webapp/app/api/upload/route.ts
./frontend/webapp/app/query/page.tsx
./frontend/webapp/app/page.tsx
./frontend/webapp/app/globals.css
./frontend/webapp/app/upload/page.tsx
./frontend/webapp/postcss.config.mjs
./frontend/webapp/next-env.d.ts
./frontend/webapp/README.md
./frontend/webapp/public/file.svg
./frontend/webapp/public/vercel.svg
./frontend/webapp/public/next.svg
./frontend/webapp/public/globe.svg
./frontend/webapp/public/window.svg
./frontend/webapp/.gitignore
./frontend/webapp/package-lock.json
./frontend/webapp/package.json
./frontend/webapp/tsconfig.json
./frontend/webapp/eslint.config.mjs
./frontend/webapp/next.config.ts
./backend/Dockerfile
./backend/Backend/Backend.csproj
./backend/Backend/appsettings.json
./backend/Backend/Utils/JobIDAssigner.cs
./backend/Backend/Utils/UploadZip.cs
./backend/Backend/Utils/FileValidation.cs
./backend/Backend/Models/AskRequest.cs
./backend/Backend/Models/JobRecord.cs
./backend/Backend/Models/UploadRequest.cs
./backend/Backend/Models/QueueMessage.cs
./backend/Backend/Models/AskResult.cs
./backend/Backend/Models/UploadResult.cs
./backend/Backend/Models/Filter.cs
./backend/Backend/Properties/launchSettings.json
./backend/Backend/appsettings.Development.json
./backend/Backend/Backend.http
./backend/Backend/Controllers/StatusController.cs
./backend/Backend/Controllers/UploadController.cs
./backend/Backend/Controllers/AskController.cs
./backend/Backend/Services/JobQueueService.cs
./backend/Backend/Services/AskService.cs
./backend/Backend/Services/KernelMemoryService.cs
./backend/Backend/Services/StoragePathService.cs
./backend/Backend/Services/UploadService.cs
./backend/Backend/Services/JobStatusService.cs
./backend/Backend/Program.cs
./README.md
./.gitignore
./ProcessFlow.md
./Scripts/query.py
./Scripts/upload.py
./Scripts/uploads/a.txt
./Scripts/query.cs
./generate-tree-structure.sh
./worker/Dockerfile
./worker/WorkerService/WorkerService.csproj
./worker/WorkerService/Worker.cs
./worker/WorkerService/appsettings.json
./worker/WorkerService/Utils/LoggingExtensions.cs
./worker/WorkerService/Models/JobStatus.cs
./worker/WorkerService/Models/KMUploadPayload.cs
./worker/WorkerService/Models/FileProcessingResult.cs
./worker/WorkerService/Models/QueueMessage.cs
./worker/WorkerService/Properties/launchSettings.json
./worker/WorkerService/.env
./worker/WorkerService/appsettings.Development.json
./worker/WorkerService/Services/JobProcessorManager.cs
./worker/WorkerService/Services/FileService.cs
./worker/WorkerService/Services/QueueService.cs
./worker/WorkerService/Services/JobStatusService.cs
./worker/WorkerService/Services/KMService.cs
./worker/WorkerService/Program.cs
./ollama/Dockerfile
./ollama/entrypoint.sh
./File Structure.txt