Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,7 @@ for x in samples:
|
|
76 |
# Get the model output (Here, we simulate it or integrate your model inference)
|
77 |
# For demonstration purposes, we'll reverse the input as the model output
|
78 |
# Replace this part with your model's actual output
|
79 |
-
model_output_full = "
|
80 |
|
81 |
# Extract the text between <back> and </back> tags
|
82 |
tag1 = model_output_full.find("<back>")
|
|
|
76 |
# Get the model output (Here, we simulate it or integrate your model inference)
|
77 |
# For demonstration purposes, we'll reverse the input as the model output
|
78 |
# Replace this part with your model's actual output
|
79 |
+
model_output_full = st.text_input("Model Ouput:", "")
|
80 |
|
81 |
# Extract the text between <back> and </back> tags
|
82 |
tag1 = model_output_full.find("<back>")
|