Spaces:
Sleeping
Sleeping
JoFrost
commited on
Commit
•
e66a6c5
1
Parent(s):
c3064a0
banner
Browse files- .env +1 -1
- src/lib/components/chat/ChatIntroduction.svelte +2 -2
.env
CHANGED
@@ -68,7 +68,7 @@ PUBLIC_ANNOUNCEMENT_BANNERS=`[
|
|
68 |
{
|
69 |
"title": "Private Llama 2 70b integration coming soon",
|
70 |
"linkTitle": "Join our Beta",
|
71 |
-
"linkHref": "https://www.mithrilsecurity.io/
|
72 |
}
|
73 |
]`
|
74 |
|
|
|
68 |
{
|
69 |
"title": "Private Llama 2 70b integration coming soon",
|
70 |
"linkTitle": "Join our Beta",
|
71 |
+
"linkHref": "https://www.mithrilsecurity.io/beta-registration-for-private-llama2-chat"
|
72 |
}
|
73 |
]`
|
74 |
|
src/lib/components/chat/ChatIntroduction.svelte
CHANGED
@@ -21,8 +21,8 @@
|
|
21 |
|
22 |
$: currentModelMetadata = findCurrentModel(models, settings.activeModel);
|
23 |
|
24 |
-
const announcementBanners =
|
25 |
-
? JSON.parse(
|
26 |
: [];
|
27 |
|
28 |
const dispatch = createEventDispatcher<{ message: string }>();
|
|
|
21 |
|
22 |
$: currentModelMetadata = findCurrentModel(models, settings.activeModel);
|
23 |
|
24 |
+
const announcementBanners = PUBLIC_ANNOUNCEMENT_BANNERS
|
25 |
+
? JSON.parse(PUBLIC_ANNOUNCEMENT_BANNERS)
|
26 |
: [];
|
27 |
|
28 |
const dispatch = createEventDispatcher<{ message: string }>();
|