starters page
Browse files- .chainlit/config.toml +5 -0
- app.py +2 -0
.chainlit/config.toml
CHANGED
@@ -14,6 +14,9 @@ cache = false
|
|
14 |
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
|
15 |
# follow_symlink = false
|
16 |
|
|
|
|
|
|
|
17 |
[features]
|
18 |
# Show the prompt playground
|
19 |
prompt_playground = true
|
@@ -79,6 +82,8 @@ hide_cot = false
|
|
79 |
#dark = "#980039"
|
80 |
#light = "#FFE7EB"
|
81 |
|
|
|
|
|
82 |
|
83 |
[meta]
|
84 |
generated_by = "0.7.700"
|
|
|
14 |
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
|
15 |
# follow_symlink = false
|
16 |
|
17 |
+
# Path to the starters file
|
18 |
+
starters_file = "starters.py"
|
19 |
+
|
20 |
[features]
|
21 |
# Show the prompt playground
|
22 |
prompt_playground = true
|
|
|
82 |
#dark = "#980039"
|
83 |
#light = "#FFE7EB"
|
84 |
|
85 |
+
# Set the default theme to dark
|
86 |
+
default_theme = "dark"
|
87 |
|
88 |
[meta]
|
89 |
generated_by = "0.7.700"
|
app.py
CHANGED
@@ -11,6 +11,8 @@ from langchain.schema.output_parser import StrOutputParser
|
|
11 |
from langchain.schema.runnable import RunnablePassthrough
|
12 |
from langchain.schema.runnable.config import RunnableConfig
|
13 |
|
|
|
|
|
14 |
load_dotenv()
|
15 |
|
16 |
GROQ_API_KEY = os.environ["GROQ_API_KEY"]
|
|
|
11 |
from langchain.schema.runnable import RunnablePassthrough
|
12 |
from langchain.schema.runnable.config import RunnableConfig
|
13 |
|
14 |
+
import starters
|
15 |
+
|
16 |
load_dotenv()
|
17 |
|
18 |
GROQ_API_KEY = os.environ["GROQ_API_KEY"]
|