Spaces:
Runtime error
Runtime error
Commit ·
961fcc3
1
Parent(s): 7797e7d
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import subprocess
|
|
| 4 |
import cpuinfo
|
| 5 |
|
| 6 |
def greet(name):
|
| 7 |
-
a =
|
| 8 |
return str(a)
|
| 9 |
|
| 10 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
|
|
|
| 4 |
import cpuinfo
|
| 5 |
|
| 6 |
def greet(name):
|
| 7 |
+
a = cpuinfo.get_cpu_info()
|
| 8 |
return str(a)
|
| 9 |
|
| 10 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|