Spaces:
Sleeping
Sleeping
add changes
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
from huggingface_hub import InferenceClient
|
| 2 |
import gradio as gr
|
| 3 |
-
|
| 4 |
|
| 5 |
|
| 6 |
client = InferenceClient(
|
|
@@ -8,7 +8,7 @@ client = InferenceClient(
|
|
| 8 |
)
|
| 9 |
|
| 10 |
def call_compilex_data():
|
| 11 |
-
txt_file_path = "
|
| 12 |
|
| 13 |
with open(txt_file_path, 'r') as file:
|
| 14 |
input_data = file.read()
|
|
|
|
| 1 |
from huggingface_hub import InferenceClient
|
| 2 |
import gradio as gr
|
| 3 |
+
import json
|
| 4 |
|
| 5 |
|
| 6 |
client = InferenceClient(
|
|
|
|
| 8 |
)
|
| 9 |
|
| 10 |
def call_compilex_data():
|
| 11 |
+
txt_file_path = "compilerx_json.json"
|
| 12 |
|
| 13 |
with open(txt_file_path, 'r') as file:
|
| 14 |
input_data = file.read()
|