-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathse_api copy 2.yaml
251 lines (245 loc) · 6.98 KB
/
se_api copy 2.yaml
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
info:
title: SE Gen AI Project
version: 1.0.0
description: >-
<h3>Software Engineering Project: Milestone 4</h3>
<h3>Task: API Endpoints Documentation</h3>
<h3>Course: BSCSS3001 - Software Engineering</h3>
<h3>Group: 20</h3>
<h3>Program: Online BSc in Programming and Data Science</h3>
<h3>Institute: Indian Institute of Technology, Madras</h3>
termsOfService: http://swagger.io/terms/
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
version: 1.2.0
openapi: 3.0.0
paths:
/:
get:
description: Route for home page
responses:
'200':
description: Success
summary: Home Page
/api/activityquestion/clear:
delete:
description: Clear the answers of the current activity question
responses:
'200':
description: Success
summary: Clear Activity
/api/chat/clear:
delete:
description: Clears all chat history involving the chatbot and current user
responses:
'200':
description: Success
summary: Clear Chat History
/api/chat_chain:
post:
description: Endpoint to chain LLM conversations and generate responses.
responses:
'200':
description: Success
summary: Chain LLM conversation
/api/chatbot_page:
post:
description: Route for chatbot page
responses:
'200':
description: Success
summary: Chatbot for general questions
/api/complete_assignment_feedback:
post:
description: Endppoint to generate student custom feedback based on the questionnaire
and student responses.
responses:
'200':
description: Success
summary: Generate student custom feedback
/api/dashboard:
post:
description: Dashboard Page populated with details
responses:
'200':
description: Success
summary: Dashboard Page Contents
/api/dashboard/activityquestion:
post:
description: Activity Question Page populated with details
responses:
'200':
description: Success
summary: Activity Question Page Details
/api/dashboard/gradedassignment:
post:
description: Graded Assignment Page populated with details
responses:
'200':
description: Success
summary: Graded Assignment Page Details
/api/dashboard/lecture:
post:
description: Lecture Page populated with details
responses:
'200':
description: Success
summary: Lecture Page Contents
/api/dashboard/programmingassignment:
post:
description: Programming assignment Page populated with details
responses:
'200':
description: Success
summary: Programming Assignment Page Details
/api/get_transcript:
post:
description: Get the transcript of a given video lecture.
responses:
'200':
description: Success
summary: Fetches video transcript
/api/gradedassignment/clear:
delete:
description: Clear the answers of the current graded assignment
responses:
'200':
description: Success
summary: Clear Graded Assignment
/api/lecture_populate:
post:
description: Endpoint to populate lectures pages.
responses:
'200':
description: Success
summary: Populates lecture pages
/api/logout:
delete:
description: Clears all of the current users history and data
responses:
'200':
description: Success
summary: Clear All User Data
/api/per_qn_doubt:
post:
description: Endpoint to generate explanation for individual question with user
query.
responses:
'200':
description: Success
summary: Generates explanation for individual question based on doubt
/api/per_qn_explaination:
post:
description: Endpoint to generate explanation for individual question without
user query.
responses:
'200':
description: Success
summary: Generates explanation for individual question
/api/populate_assignments:
post:
description: Endpoint to populate assignments into the page.
responses:
'200':
description: Success
summary: Populates assignment
/api/process_regular_questions:
post:
description: Endpoint to process regular questions and generate responses from
LLM.
responses:
'200':
description: Success
summary: Chatbot for regular questions
/api/programmingassignment/clear:
delete:
description: Clear the answers of the current Programming Assignment
responses:
'200':
description: Success
summary: Clear Programming Assignment
/api/verify_assignments:
post:
description: Endpoint to verify the responses that the user has given.
responses:
'200':
description: Success
summary: Verifies assignment
/api/vid_database_fetch:
post:
description: Endpoint to fetch video data from database.
responses:
'200':
description: Success
summary: Fetches video data from database
/api/vid_keyword:
post:
description: Endpoint to fetch keywords mentioned in video.
responses:
'200':
description: Success
summary: Fetches video keywords
/api/vid_keyword_gen:
post:
description: Endpoint to generate keywords mentioned in video.
responses:
'200':
description: Success
summary: Generates video keywords
/api/vid_summary:
post:
description: Endpoint to fetch video summary.
responses:
'200':
description: Success
summary: Fetches video summary
/api/vid_summary_gen:
post:
description: Endpoint to generate video summary.
responses:
'200':
description: Success
summary: Generates video summary
/dashboard:
get:
description: Route for dashboard
responses:
'200':
description: Success
summary: Dashboard
/dashboard/activityquestion:
get:
description: Route for activity question page
responses:
'200':
description: Success
summary: Activity Question Page
/dashboard/chatbot:
get:
description: Route for chatbot interface
responses:
'200':
description: Success
summary: Central Chatbot
/dashboard/gradedassignment:
get:
description: Graded Assignment Page populated with details
responses:
'200':
description: Success
summary: Graded Assignment Page
/dashboard/lecture:
get:
description: Route for lecture page
responses:
'200':
description: Success
summary: Lecture Page
/dashboard/programmingassignment:
get:
description: Route for programming assignment page
responses:
'200':
description: Success
summary: Programming Assignment Page