Broomva commited on
Commit
569a7d6
·
1 Parent(s): c48234a

Updated chainlit reqs

Browse files
.chainlit/config.toml CHANGED
@@ -1,17 +1,17 @@
1
  [project]
2
  # If true (default), the app will be available to anonymous users.
3
  # If false, users will need to authenticate and be part of the project to use the app.
4
- public = true
5
 
6
  # The project ID (found on https://cloud.chainlit.io).
7
  # The project ID is required when public is set to false or when using the cloud database.
8
- #id = ""
9
 
10
  # Uncomment if you want to persist the chats.
11
  # local will create a database in your .chainlit directory (requires node.js installed).
12
  # cloud will use the Chainlit cloud database.
13
  # custom will load use your custom client.
14
- #database = "local"
15
 
16
  # Whether to enable telemetry (default: true). No personal data is collected.
17
  enable_telemetry = false
@@ -19,6 +19,8 @@ enable_telemetry = false
19
  # List of environment variables to be provided by each user to use the app.
20
  user_env = []
21
 
 
 
22
  # Duration (in seconds) during which the session is saved when the connection is lost
23
  session_timeout = 3600
24
 
@@ -36,7 +38,32 @@ default_expand_messages = false
36
  hide_cot = false
37
 
38
  # Link to your github repo. This will add a github button in the UI's header.
39
- # github = ""
40
 
41
  [meta]
42
  generated_by = "0.6.2"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  [project]
2
  # If true (default), the app will be available to anonymous users.
3
  # If false, users will need to authenticate and be part of the project to use the app.
4
+ public = false
5
 
6
  # The project ID (found on https://cloud.chainlit.io).
7
  # The project ID is required when public is set to false or when using the cloud database.
8
+ id = "book-broomva-MaXV64dfhISZ"
9
 
10
  # Uncomment if you want to persist the chats.
11
  # local will create a database in your .chainlit directory (requires node.js installed).
12
  # cloud will use the Chainlit cloud database.
13
  # custom will load use your custom client.
14
+ database = "cloud"
15
 
16
  # Whether to enable telemetry (default: true). No personal data is collected.
17
  enable_telemetry = false
 
19
  # List of environment variables to be provided by each user to use the app.
20
  user_env = []
21
 
22
+ multi_modal = false
23
+
24
  # Duration (in seconds) during which the session is saved when the connection is lost
25
  session_timeout = 3600
26
 
 
38
  hide_cot = false
39
 
40
  # Link to your github repo. This will add a github button in the UI's header.
41
+ github = "https://github.com/Broomva/book.broomva.tech"
42
 
43
  [meta]
44
  generated_by = "0.6.2"
45
+
46
+ # Specify a CSS file that can be used to customize the user interface.
47
+ # The CSS file can be served from the public directory or via an external link.
48
+ # custom_css = "/public/test.css"
49
+
50
+
51
+ # # Override default MUI light theme. (Check theme.ts)
52
+ # [UI.theme.light]
53
+ # background = "#FAFAFA"
54
+ # paper = "#FFFFFF"
55
+
56
+ # [UI.theme.light.primary]
57
+ # main = "#F80061"
58
+ # dark = "#980039"
59
+ # light = "#FFE7EB"
60
+
61
+ # # Override default MUI dark theme. (Check theme.ts)
62
+ # [UI.theme.dark]
63
+ # background = "#FAFAFA"
64
+ # paper = "#FFFFFF"
65
+
66
+ # [UI.theme.dark.primary]
67
+ # main = "#F80061"
68
+ # dark = "#980039"
69
+ # light = "#FFE7EB"
__pycache__/app.cpython-311.pyc ADDED
Binary file (2.79 kB). View file
 
chainlit.md CHANGED
@@ -1,2 +1,14 @@
1
  # Welcome to the Broomva Book Chat
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Welcome to the Broomva Book Chat
2
 
3
+ This is the Q&A agent for the Broomva Book. It is a chat interface that uses retrieval to
4
+ answer questions leveraging information found in the book.
5
+
6
+ Go ahead and ask things like:
7
+
8
+ `What is the book about?`
9
+
10
+ `What is machine learning and deep learning?`
11
+
12
+ `what is quantum computing?`
13
+
14
+ `can you explain the meaning of life?`
public/favicon.ico ADDED
public/logo_dark.png ADDED
public/logo_light.png ADDED