File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -2,26 +2,39 @@ backend_url: http://localhost:8081
2
2
hf_model_name : ise-uiuc/Magicoder-S-DS-6.7B
3
3
4
4
# model_instruction: You are a helpful and cheerful AI assistant. Please respond appropriately.
5
+ # llm_max_tokens:
6
+ # llm_temperature:
7
+ # llm_top_p:
8
+ # llm_frequency_penalty:
9
+ # llm_presence_penalty:
5
10
6
11
page_description : " [Custom Markdown](https://google.com)"
7
12
8
13
# UI theming tweaks
9
14
theme_background_colour : " #00376c"
10
15
theme_params :
11
16
# primary_hue: blue
17
+ # Use local system fonts rather than Google fonts API
12
18
font :
13
19
- sans-serif
14
20
font_mono :
15
21
- sans-serif
16
22
23
+ # Customise page title colour
17
24
css_overrides : |
18
25
h1 {
19
26
color: white;
20
27
padding-top: 1em;
21
28
}
22
29
23
- # llm_max_tokens:
24
- # llm_temperature:
25
- # llm_top_p:
26
- # llm_frequency_penalty:
27
- # llm_presence_penalty:
30
+ # Example of a custom JS function which adds a
31
+ # privacy statement link to the page footer
32
+ custom_javascript : |
33
+ function addPrivacyStatement() {
34
+ var footer = document.querySelector('footer');
35
+ footer.appendChild(footer.children[1].cloneNode(deep=true));
36
+ var item = footer.children[2].cloneNode();
37
+ item.href = 'https://gdpr.eu/eu-gdpr-personal-data/';
38
+ item.textContent = 'Privacy Statement';
39
+ footer.appendChild(item);
40
+ }
You can’t perform that action at this time.
0 commit comments