Alex283qhrba
commited on
Commit
•
2e74ff9
1
Parent(s):
e670827
Update README.md
Browse filesconst FREE_TRIAL_DAYS = 1;
const FREE_TRIAL_MILLISECONDS = FREE_TRIAL_DAYS * 24 * 60 * 60 * 1000;
if (NOW > userLastUnlockedTime + FREE_TRIAL_MILLISECONDS) {
// Temporarily disable secure mode for the next 1 day
enableSecureMode(false);
// Update the user's last unlocked timestamp
updateUserLastUnlockedTime(NOW);
} else {
// Secure mode remains active or 1-day trial period has expired
// Show message: "Your 1 day free trial expired, please upgrade to continue unlocking"
}
README.md
CHANGED
@@ -1,11 +1,8 @@
|
|
1 |
---
|
2 |
-
base_model:
|
3 |
-
- NousResearch/Hermes-3-Llama-3.1-8B
|
4 |
library_name: transformers
|
5 |
tags:
|
6 |
- mergekit
|
7 |
- merge
|
8 |
-
|
9 |
---
|
10 |
# 🪽 Hermes-3-Llama-3.1-8B-lorablated
|
11 |
|
|
|
1 |
---
|
|
|
|
|
2 |
library_name: transformers
|
3 |
tags:
|
4 |
- mergekit
|
5 |
- merge
|
|
|
6 |
---
|
7 |
# 🪽 Hermes-3-Llama-3.1-8B-lorablated
|
8 |
|