Spaces:
Sleeping
Sleeping
Update .env.local
Browse files- .env.local +1 -32
.env.local
CHANGED
|
@@ -1,35 +1,4 @@
|
|
| 1 |
-
|
| 2 |
-
{
|
| 3 |
-
"name": "Your Model",
|
| 4 |
-
"promptExamples": [
|
| 5 |
-
{
|
| 6 |
-
"title": "Python Fibonacci",
|
| 7 |
-
"prompt": "How can I write a Python function to generate the nth Fibonacci number?"
|
| 8 |
-
}, {
|
| 9 |
-
"title": "What is a meme?",
|
| 10 |
-
"prompt": "What is a meme, and what's the history behind this word?"
|
| 11 |
-
}, {
|
| 12 |
-
"title": "Regex",
|
| 13 |
-
"prompt": "Create a regex to extract dates from logs"
|
| 14 |
-
}
|
| 15 |
-
],
|
| 16 |
-
"endpoints": [
|
| 17 |
-
{
|
| 18 |
-
"type": "tgi",
|
| 19 |
-
"url": "http://127.0.0.1:8080"
|
| 20 |
-
}
|
| 21 |
-
],
|
| 22 |
-
"parameters": {
|
| 23 |
-
"temperature": 0.7,
|
| 24 |
-
"top_p": 0.95,
|
| 25 |
-
"repetition_penalty": 1.2,
|
| 26 |
-
"top_k": 50,
|
| 27 |
-
"truncate": 1000,
|
| 28 |
-
"max_new_tokens": 1024,
|
| 29 |
-
"stop": ["</s>", "<|>"]
|
| 30 |
-
}
|
| 31 |
-
}
|
| 32 |
-
]`
|
| 33 |
|
| 34 |
PUBLIC_APP_NAME="Your ChatUI App"
|
| 35 |
|
|
|
|
| 1 |
+
OPENAI_BASE_URL=https://ay8ts6hfrqidjvwt.us-east-1.aws.endpoints.huggingface.cloud/v1/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
PUBLIC_APP_NAME="Your ChatUI App"
|
| 4 |
|