juanesvelez commited on
Commit
ad05766
·
verified ·
1 Parent(s): 52a1159

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -17,8 +17,8 @@ def predict_next_token(text):
17
 
18
  @sol.component
19
  def NextTokenPredictionApp():
20
- text = sol.use_state("")
21
- predictions = sol.use_state([])
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
- if __name__ == "__main__":
40
- sol.run(NextTokenPredictionApp, title="Next Token Prediction App")
 
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")