You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With [HoloViz Panel](https://panel.holoviz.org) you develop your app on your laptop and convert it to [Pyodide](https://pyodide.org/en/stable/) or [PyScript](https://pyscript.net/) by running [`panel convert`](https://panel.holoviz.org/how_to/wasm/convert.html).
249
249
250
-
With [HoloViz Panel](https://panel.holoviz.org) you develop your app on your laptop and use [`panel convert`](https://panel.holoviz.org/how_to/wasm/convert.html) to convert it to [Pyodide](https://pyodide.org/en/stable/) or [PyScript](https://pyscript.net/).
Convert the app to [Pyodide](https://pyodide.org/en/stable/). For more options like *hot reload* check out the [Panel Convert](https://panel.holoviz.org/how_to/wasm/convert.html) guide.
returnf"""I feel a {label} vibe here (score: {score})"""
283
327
284
-
285
328
welcome_message = pn.chat.ChatMessage(
286
329
f"I'm a Hugging Face Transformers `{MODEL}` model.\n\nPlease *send a message*!",
287
330
user="Hugging Face",
288
331
)
289
332
290
333
pn.chat.ChatInterface(
291
-
welcome_message,
292
-
callback=callback,
293
-
callback_user="Hugging Face",
294
-
placeholder_text="Loading the model ...",
334
+
welcome_message, placeholder_text="Loading the model ...",
335
+
callback=callback, callback_user="Hugging Face",
295
336
).servable()
296
337
```
297
338
298
-
Convert the app to [Pyodide](https://pyodide.org/en/stable/). For more options like *hot reload* check out the [Panel Convert](https://panel.holoviz.org/how_to/wasm/convert.html) guide.
0 commit comments