Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,8 +17,8 @@ def predict_next_token(text):
|
|
17 |
|
18 |
@sol.component
|
19 |
def NextTokenPredictionApp():
|
20 |
-
text = sol.
|
21 |
-
predictions = sol.
|
22 |
|
23 |
def on_text_change(new_text):
|
24 |
text.set(new_text)
|
@@ -36,5 +36,5 @@ def NextTokenPredictionApp():
|
|
36 |
for token, prob in predictions.value:
|
37 |
sol.Markdown(f"- **{token}**: {prob:.4f}")
|
38 |
|
39 |
-
|
40 |
-
|
|
|
17 |
|
18 |
@sol.component
|
19 |
def NextTokenPredictionApp():
|
20 |
+
text = sol.reactive("")
|
21 |
+
predictions = sol.reactive([])
|
22 |
|
23 |
def on_text_change(new_text):
|
24 |
text.set(new_text)
|
|
|
36 |
for token, prob in predictions.value:
|
37 |
sol.Markdown(f"- **{token}**: {prob:.4f}")
|
38 |
|
39 |
+
# Iniciar la aplicación en modo de desarrollo
|
40 |
+
app = sol.App(NextTokenPredictionApp, title="Next Token Prediction App")
|