Thomas (Tom) Gardos commited on
Commit
3caf906
·
unverified ·
2 Parent(s): 379628b 3640763

Merge pull request #18 from tools4ds/Farid-Karimli-patch-1

Browse files
apps/ai_tutor/config/project_config.yml CHANGED
@@ -3,15 +3,47 @@ retriever:
3
  RAGatouille: "XThomasBU/Colbert_Index"
4
 
5
  metadata:
6
- metadata_links: ["https://dl4ds.github.io/sp2024/lectures/", "https://dl4ds.github.io/sp2024/schedule/"]
7
- slide_base_link: "https://dl4ds.github.io"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  token_config:
10
  cooldown_time: 60
11
  regen_time: 180
12
- tokens_left: 2000
13
  all_time_tokens_allocated: 1000000
14
 
 
 
 
 
 
 
15
  misc:
16
  github_repo: "https://github.com/edubotics-ai/edubot-core"
17
  docs_website: "https://dl4ds.github.io/dl4ds_tutor/"
 
3
  RAGatouille: "XThomasBU/Colbert_Index"
4
 
5
  metadata:
6
+ base_link: "https://tools4ds.github.io/fa2024/"
7
+ metadata_links:
8
+ [
9
+ "https://tools4ds.github.io/fa2024/lectures/",
10
+ "https://tools4ds.github.io/fa2024/schedule_a1/",
11
+ ]
12
+ slide_base_link: "https://tools4ds.github.io/fa2024/lectures/"
13
+
14
+ # Assignment base link is used to find the webpage where the assignment is described/posted
15
+ assignment_base_link: "https://tools4ds.github.io/fa2024/assignments/"
16
+
17
+ # These need to be patterns from URLs that can be used to identify the type of content uniquely
18
+ lectures_pattern: "/lectures/"
19
+ assignments_pattern: "/assignments/"
20
+
21
+ # These are fields that can be extracted from the webpages of the course content
22
+ lecture_metadata_fields:
23
+ - "title"
24
+ - "tldr"
25
+ - "date"
26
+ - "lecture_recording"
27
+ - "suggested_readings"
28
+
29
+ assignment_metadata_fields:
30
+ - "title"
31
+ - "release_date"
32
+ - "due_date"
33
+ - "source_file"
34
 
35
  token_config:
36
  cooldown_time: 60
37
  regen_time: 180
38
+ tokens_left: 50000
39
  all_time_tokens_allocated: 1000000
40
 
41
+ content:
42
+ notebookheaders_to_split_on:
43
+ - ["####", "Question"]
44
+ - ["##", "Section"]
45
+ - ["#", "Title"]
46
+
47
  misc:
48
  github_repo: "https://github.com/edubotics-ai/edubot-core"
49
  docs_website: "https://dl4ds.github.io/dl4ds_tutor/"