Spaces:
Runtime error
Runtime error
modified app.py
Browse files- app.py +2 -1
- node_modules/.package-lock.json +6 -0
- package-lock.json +6 -0
- package.json +1 -0
app.py
CHANGED
|
@@ -28,7 +28,8 @@ iface = gr.Interface(
|
|
| 28 |
inputs=gr.Textbox(lines=10, label="Input Prompt"),
|
| 29 |
outputs=gr.Textbox(label="Generated Output"),
|
| 30 |
title="LLaMA 7B Server",
|
| 31 |
-
description="A web interface for interacting with the LLaMA 7B model."
|
|
|
|
| 32 |
)
|
| 33 |
|
| 34 |
# Launch the interface
|
|
|
|
| 28 |
inputs=gr.Textbox(lines=10, label="Input Prompt"),
|
| 29 |
outputs=gr.Textbox(label="Generated Output"),
|
| 30 |
title="LLaMA 7B Server",
|
| 31 |
+
description="A web interface for interacting with the LLaMA 7B model.",
|
| 32 |
+
allow_flagging="never"
|
| 33 |
)
|
| 34 |
|
| 35 |
# Launch the interface
|
node_modules/.package-lock.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "hfrepo",
|
| 3 |
+
"lockfileVersion": 3,
|
| 4 |
+
"requires": true,
|
| 5 |
+
"packages": {}
|
| 6 |
+
}
|
package-lock.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "hfrepo",
|
| 3 |
+
"lockfileVersion": 3,
|
| 4 |
+
"requires": true,
|
| 5 |
+
"packages": {}
|
| 6 |
+
}
|
package.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{}
|