solara 1.24.0__py2.py3-none-any.whl → 1.25.1__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. solara/__init__.py +1 -1
  2. solara/__main__.py +4 -1
  3. solara/cache.py +9 -4
  4. solara/checks.py +9 -4
  5. solara/lab/components/__init__.py +1 -0
  6. solara/lab/components/chat.py +203 -0
  7. solara/minisettings.py +1 -1
  8. solara/server/assets/style.css +1545 -0
  9. solara/server/flask.py +1 -1
  10. solara/server/kernel.py +3 -3
  11. solara/server/patch.py +2 -0
  12. solara/server/reload.py +1 -1
  13. solara/server/server.py +58 -0
  14. solara/server/settings.py +1 -0
  15. solara/server/starlette.py +32 -13
  16. solara/server/static/solara_bootstrap.py +1 -1
  17. solara/server/telemetry.py +8 -3
  18. solara/server/templates/loader-plain.html +1 -1
  19. solara/server/templates/loader-solara.html +1 -1
  20. solara/server/templates/solara.html.j2 +20 -25
  21. solara/util.py +15 -2
  22. solara/website/components/notebook.py +44 -1
  23. solara/website/pages/__init__.py +3 -0
  24. solara/website/pages/api/__init__.py +1 -0
  25. solara/website/pages/api/chat.py +109 -0
  26. solara/website/pages/apps/jupyter-dashboard-1.py +116 -0
  27. solara/website/pages/apps/scatter.py +4 -4
  28. solara/website/pages/doc_use_download.py +1 -1
  29. solara/website/pages/docs/content/04-tutorial/00-overview.md +1 -0
  30. solara/website/pages/docs/content/04-tutorial/60-jupyter-dashboard-part1.py +18 -1
  31. solara/website/pages/docs/content/04-tutorial/_jupyter_dashboard_1.ipynb +607 -14
  32. solara/website/pages/docs/content/10-howto/ipywidget_libraries.md +1 -1
  33. solara/website/pages/docs/content/95-changelog.md +31 -0
  34. solara/website/pages/examples/ai/chatbot.py +96 -0
  35. solara/website/public/success.html +16 -7
  36. solara/website/templates/index.html.j2 +16 -15
  37. {solara-1.24.0.dist-info → solara-1.25.1.dist-info}/METADATA +9 -8
  38. {solara-1.24.0.dist-info → solara-1.25.1.dist-info}/RECORD +43 -40
  39. {solara-1.24.0.dist-info → solara-1.25.1.dist-info}/WHEEL +1 -1
  40. solara/server/assets/index.css +0 -14480
  41. {solara-1.24.0.data → solara-1.25.1.data}/data/prefix/etc/jupyter/jupyter_notebook_config.d/solara.json +0 -0
  42. {solara-1.24.0.data → solara-1.25.1.data}/data/prefix/etc/jupyter/jupyter_server_config.d/solara.json +0 -0
  43. {solara-1.24.0.dist-info → solara-1.25.1.dist-info}/entry_points.txt +0 -0
  44. {solara-1.24.0.dist-info → solara-1.25.1.dist-info}/licenses/LICENSE +0 -0
@@ -47,7 +47,7 @@ def Page():
47
47
  )
48
48
  ```
49
49
 
50
- Note that this is about the worst example of something that looks easy in ipyleaflet using the classical API becomes a but more involved in Solara.
50
+ Note that this is about the worst example of something that looks easy in ipyleaflet using the classical API becoming a bit more involved in Solara.
51
51
  In practice, this does not happen often, and your code in general will be shorter and more readable.
52
52
 
53
53
  See also [the basic ipyleaflet example](/examples/libraries/ipyleaflet) and [the advanced ipyleaflet example](/examples/libraries/ipyleaflet_advanced).
@@ -1,5 +1,36 @@
1
1
  # Solara Changelog
2
2
 
3
+ ## Version 1.25.1
4
+
5
+ ### Details
6
+
7
+ * Performance: Removed unnecessary CSS and JS.
8
+ * Performance: Quality of Life - JS and CSS resources automatically reloaded on version change.
9
+ * Bug fix: overlay disabling navigation for display width < 960px.
10
+
11
+
12
+ ## Version 1.25.0
13
+
14
+
15
+ ### Demo of a Chat GPT interface with medical 3d visualization
16
+
17
+ <video width="80%" controls>
18
+ <source src="https://github.com/widgetti/solara/assets/1765949/ca149ab5-0bd3-4eea-9736-08e1e0b06771" type="video/mp4" >
19
+ </video>
20
+
21
+
22
+
23
+
24
+ ### Highlight
25
+
26
+ * Feature: Chat interface components for chatbots, chatrooms or conversational elements in your dashboards or apps [#384](https://github.com/widgetti/solara/pull/384)
27
+
28
+ ### Details
29
+
30
+ * Performance: Under starlette, we throttle sending websocket messages to get better performance, this is experimental and can be enabled by setting the
31
+ environment variable `SOLARA_EXPERIMENTAL_PERFORMANCE=1` [#400](https://github.com/widgetti/solara/pull/400)
32
+ * Performance: Re-use the jinja environment when rendering templates (this also saves memory).
33
+
3
34
  ## Version 1.24.0
4
35
 
5
36
  ### Demo of CSS hot reloading
@@ -0,0 +1,96 @@
1
+ """
2
+ # Chatbot
3
+
4
+ A way to create a chatbot using OpenAI's GPT-4 API, utilizing their new API, and the streaming feature.
5
+ """
6
+
7
+
8
+ import os
9
+ from typing import List
10
+
11
+ from openai import OpenAI
12
+ from typing_extensions import TypedDict
13
+
14
+ import solara
15
+
16
+
17
+ class MessageDict(TypedDict):
18
+ role: str
19
+ content: str
20
+
21
+
22
+ if os.getenv("OPENAI_API_KEY") is None and "OPENAI_API_KEY" not in os.environ:
23
+ openai = None
24
+ else:
25
+ openai = OpenAI()
26
+ openai.api_key = os.getenv("OPENAI_API_KEY") # type: ignore
27
+
28
+ messages: solara.Reactive[List[MessageDict]] = solara.reactive([])
29
+
30
+
31
+ def no_api_key_message():
32
+ messages.value = [
33
+ {
34
+ "role": "assistant",
35
+ "content": "No OpenAI API key found. Please set your OpenAI API key in the environment variable `OPENAI_API_KEY`.",
36
+ },
37
+ ]
38
+
39
+
40
+ def add_chunk_to_ai_message(chunk: str):
41
+ messages.value = [
42
+ *messages.value[:-1],
43
+ {
44
+ "role": "assistant",
45
+ "content": messages.value[-1]["content"] + chunk,
46
+ },
47
+ ]
48
+
49
+
50
+ @solara.component
51
+ def Page():
52
+ user_message_count = len([m for m in messages.value if m["role"] == "user"])
53
+
54
+ def send(message):
55
+ messages.value = [
56
+ *messages.value,
57
+ {"role": "user", "content": message},
58
+ ]
59
+
60
+ def call_openai():
61
+ if user_message_count == 0:
62
+ return
63
+ if openai is None:
64
+ no_api_key_message()
65
+ return
66
+ response = openai.chat.completions.create(
67
+ model="gpt-4-1106-preview",
68
+ messages=messages.value, # type: ignore
69
+ stream=True,
70
+ )
71
+ messages.value = [*messages.value, {"role": "assistant", "content": ""}]
72
+ while True:
73
+ for chunk in response:
74
+ if chunk.choices[0].finish_reason == "stop": # type: ignore
75
+ return
76
+ add_chunk_to_ai_message(chunk.choices[0].delta.content) # type: ignore
77
+
78
+ result = solara.use_thread(call_openai, dependencies=[user_message_count]) # type: ignore
79
+
80
+ with solara.Column(
81
+ style={"width": "700px", "height": "50vh"},
82
+ ):
83
+ with solara.lab.ChatBox():
84
+ for item in messages.value:
85
+ with solara.lab.ChatMessage(
86
+ user=item["role"] == "user",
87
+ avatar=False,
88
+ name="ChatGPT" if item["role"] == "assistant" else "User",
89
+ color="rgba(0,0,0, 0.06)" if item["role"] == "assistant" else "#ff991f",
90
+ avatar_background_color="primary" if item["role"] == "assistant" else None,
91
+ border_radius="20px",
92
+ ):
93
+ solara.Markdown(item["content"])
94
+ if result.state == solara.ResultState.RUNNING:
95
+ solara.Text("I'm thinking...", style={"font-size": "1rem", "padding-left": "20px"})
96
+ solara.lab.ChatInput(send_callback=send, disabled=(result.state == solara.ResultState.RUNNING))
@@ -1,15 +1,24 @@
1
1
  <html>
2
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-G985FTLWGQ"></script>
2
+ <!-- Google Tag Manager -->
3
3
  <script>
4
- window.dataLayer = window.dataLayer || [];
5
- function gtag() { dataLayer.push(arguments); }
6
- gtag('js', new Date());
7
- gtag('config', 'G-G985FTLWGQ', {
8
- cookie_flags: 'secure;samesite=none'
9
- });
4
+ (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5
+ new Date().getTime(),event:'gtm.js'});
6
+ var f=d.getElementsByTagName(s)[0], j=d.createElement(s), dl=l!='dataLayer'?'&l='+l:'';
7
+ j.async=true;
8
+ j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;
9
+ f.parentNode.insertBefore(j,f);
10
+ })(window,document,'script','dataLayer','GTM-KC98NKNL');
10
11
  </script>
12
+ <!-- End Google Tag Manager -->
11
13
 
12
14
  <body>
15
+ <!-- Google Tag Manager (noscript) -->
16
+ <noscript>
17
+ <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KC98NKNL"
18
+ height="0" width="0" style="display:none;visibility:hidden"></iframe>
19
+ </noscript>
20
+ <!-- End Google Tag Manager (noscript) -->
21
+
13
22
  Used to detect failed Jupyter and Solara installations.
14
23
  </body>
15
24
 
@@ -13,27 +13,25 @@
13
13
  <link rel="stylesheet" href="/_solara/cdn/@docsearch/css@3/dist/style.css" />
14
14
  <script src="/_solara/cdn/@docsearch/js@3"></script>
15
15
 
16
- <!-- Google tag (gtag.js) -->
17
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-G985FTLWGQ"></script>
18
- <script>
19
- window.dataLayer = window.dataLayer || [];
20
- function gtag(){dataLayer.push(arguments);}
21
- gtag('js', new Date());
22
-
23
- gtag('config', 'G-G985FTLWGQ', {
24
- cookie_flags: 'secure;samesite=none'
25
- });
26
- </script>
27
- <!-- End Google Analytics -->
16
+ <!-- Google Tag Manager -->
17
+ <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
18
+ new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
19
+ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
20
+ 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
21
+ })(window,document,'script','dataLayer','GTM-KC98NKNL');</script>
22
+ <!-- End Google Tag Manager -->
28
23
 
29
- <!-- MailChimp -->
30
- <link href="//cdn-images.mailchimp.com/embedcode/classic-061523.css" rel="stylesheet" type="text/css">
31
- <script type="text/javascript" src="//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js"></script>
32
24
  {{ super() }}
33
25
  {% endblock %}
34
26
 
35
27
  {% block after_pre_rendered_html %}
36
28
  {{ super() }}
29
+
30
+ <!-- Google Tag Manager (noscript) -->
31
+ <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KC98NKNL"
32
+ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
33
+ <!-- End Google Tag Manager (noscript) -->
34
+
37
35
  <style id="algolia">
38
36
  .DocSearch-Button {
39
37
  background-color: rgb(255, 238, 197);
@@ -95,5 +93,8 @@
95
93
  });
96
94
  }
97
95
  </script>
96
+ <!-- MailChimp -->
97
+ <link href="//cdn-images.mailchimp.com/embedcode/classic-061523.css" rel="stylesheet" type="text/css">
98
+ <script type="text/javascript" src="//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js"></script>
98
99
  {% endblock %}
99
100
  ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: solara
3
- Version: 1.24.0
3
+ Version: 1.25.1
4
4
  Project-URL: Home, https://www.github.com/widgetti/solara
5
5
  Author-email: "Maarten A. Breddels" <maartenbreddels@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -49,24 +49,24 @@ Requires-Dist: watchdog
49
49
  Requires-Dist: watchfiles; python_version > '3.6'
50
50
  Requires-Dist: websockets
51
51
  Provides-Extra: assets
52
- Requires-Dist: solara-assets==1.24.0; extra == 'assets'
52
+ Requires-Dist: solara-assets==1.25.1; extra == 'assets'
53
53
  Provides-Extra: dev
54
54
  Requires-Dist: black; extra == 'dev'
55
55
  Requires-Dist: bqplot; extra == 'dev'
56
56
  Requires-Dist: bqplot-image-gl; extra == 'dev'
57
57
  Requires-Dist: bump2version; extra == 'dev'
58
58
  Requires-Dist: codespell; extra == 'dev'
59
- Requires-Dist: dask[dataframe]; python_version < '3.7' and extra == 'dev'
59
+ Requires-Dist: dask[dataframe]; (python_version < '3.7') and extra == 'dev'
60
60
  Requires-Dist: flake8; extra == 'dev'
61
61
  Requires-Dist: mdit-py-plugins; extra == 'dev'
62
62
  Requires-Dist: mypy; extra == 'dev'
63
- Requires-Dist: playwright; python_version > '3.6' and extra == 'dev'
63
+ Requires-Dist: playwright; (python_version > '3.6') and extra == 'dev'
64
64
  Requires-Dist: plotly; extra == 'dev'
65
65
  Requires-Dist: pre-commit; extra == 'dev'
66
66
  Requires-Dist: pytest; extra == 'dev'
67
67
  Requires-Dist: pytest-cov; extra == 'dev'
68
68
  Requires-Dist: pytest-mock; extra == 'dev'
69
- Requires-Dist: pytest-playwright; python_version > '3.6' and extra == 'dev'
69
+ Requires-Dist: pytest-playwright; (python_version > '3.6') and extra == 'dev'
70
70
  Requires-Dist: pytest-timeout; extra == 'dev'
71
71
  Requires-Dist: python-dotenv; extra == 'dev'
72
72
  Requires-Dist: types-markdown; extra == 'dev'
@@ -83,6 +83,7 @@ Requires-Dist: ipycanvas; extra == 'documentation'
83
83
  Requires-Dist: ipyleaflet; extra == 'documentation'
84
84
  Requires-Dist: matplotlib; extra == 'documentation'
85
85
  Requires-Dist: numpy; extra == 'documentation'
86
+ Requires-Dist: openai; extra == 'documentation'
86
87
  Requires-Dist: plotly; extra == 'documentation'
87
88
  Requires-Dist: tiktoken; extra == 'documentation'
88
89
  Requires-Dist: vaex-core; extra == 'documentation'
@@ -92,7 +93,7 @@ Provides-Extra: extra
92
93
  Requires-Dist: numpy; extra == 'extra'
93
94
  Requires-Dist: pillow; extra == 'extra'
94
95
  Requires-Dist: pygments; extra == 'extra'
95
- Requires-Dist: pygments==2.10; python_version < '3.7' and extra == 'extra'
96
+ Requires-Dist: pygments==2.10; (python_version < '3.7') and extra == 'extra'
96
97
  Provides-Extra: flask
97
98
  Requires-Dist: flask; extra == 'flask'
98
99
  Requires-Dist: flask-sock; extra == 'flask'
@@ -100,7 +101,7 @@ Provides-Extra: pytest
100
101
  Requires-Dist: jupyterlab; extra == 'pytest'
101
102
  Requires-Dist: pillow; extra == 'pytest'
102
103
  Requires-Dist: pixelmatch; extra == 'pytest'
103
- Requires-Dist: playwright; python_version > '3.6' and extra == 'pytest'
104
+ Requires-Dist: playwright; (python_version > '3.6') and extra == 'pytest'
104
105
  Requires-Dist: pytest; extra == 'pytest'
105
- Requires-Dist: pytest-playwright; python_version > '3.6' and extra == 'pytest'
106
+ Requires-Dist: pytest-playwright; (python_version > '3.6') and extra == 'pytest'
106
107
  Requires-Dist: voila; extra == 'pytest'
@@ -1,22 +1,22 @@
1
- solara/__init__.py,sha256=18m8D9iKzIaIp7GleKNtduZ3PGFGlbywemFhI5f7ZO4,3402
2
- solara/__main__.py,sha256=zoMnK3KMjUVYwZ_lVA4oAeBk0D02rTDpWlmHQ-gfpUk,22841
1
+ solara/__init__.py,sha256=VUaSt0sasCvMw2D__S2G2awvYinC0Fa7kmZViPKYPB0,3402
2
+ solara/__main__.py,sha256=P3yruWMX0TmHI5gQ1bDyFo2wWhwrtfFDgsgGggLpnfU,22914
3
3
  solara/alias.py,sha256=9vfLzud77NP8in3OID9b5mmIO8NyrnFjN2_aE0lSb1k,216
4
4
  solara/autorouting.py,sha256=U-LvToFLD6E42xfwNQn0BIWRpC0hDtXs6BKpa8V3lWQ,21216
5
- solara/cache.py,sha256=zfQKeMfI1-VMJk6fOq7mKFVyx8aNTUGzvMwXcZtCxRI,10052
5
+ solara/cache.py,sha256=iWDJ4bxIV7vfxH2lx2jyGMvaQDCSIJ6M6tBXOY0_opA,10292
6
6
  solara/checks.html,sha256=nYlcFNbqTdzpr0eaFxuu_-sXTC8nXJn0hGGfemzl2jQ,3254
7
- solara/checks.py,sha256=-KgtGntataanaBlJ5Op_5-NR73M4jMv4BLFE6D_iH-U,7402
7
+ solara/checks.py,sha256=WtMzUM1HN127juk5fFV2jdsJ1qT5Ghg21wEZfiVfIFc,7563
8
8
  solara/comm.py,sha256=BhHFO1fBfFP0cOKxx_oKUr6-8UqpfGZbVaofYxIXrS8,765
9
9
  solara/datatypes.py,sha256=5l0npGj0Rlv9w5PdqPacMSNMVpbmBpkWtjXet_h8Ecw,4150
10
10
  solara/express.py,sha256=dW1uq74Lyf8DomnaeGtIg9OmFy8tRkv7uYHCIvnDat0,6781
11
11
  solara/kitchensink.py,sha256=RUx3kW6CQAz9PMxB1sPI03IH5xJfsaaXq3w9bBuC6rg,249
12
12
  solara/layout.py,sha256=YSsORvn-76LrVSmElS39CBnetyUL9f4hLG_a_SdH_QM,1782
13
- solara/minisettings.py,sha256=YxqEwR9g5--ajCRUD0Ixd8425TgCPWgWatC6jDZ8HtM,4535
13
+ solara/minisettings.py,sha256=ue9aXfZaJjQVmigTsVtOebH4MfP00wtzP73hES1UlTc,4530
14
14
  solara/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  solara/reactive.py,sha256=gv4NPW1CCSQtoaDQM13-EPUlPc7isakgXIjTPPS9HQM,2920
16
16
  solara/routing.py,sha256=VsY8omsrVYm6G_ig2plJB4zdKkAH93NFW1EjSV3C7PQ,8972
17
17
  solara/settings.py,sha256=2jVKmgQLj4sDWi6z-C6kaEltBkJxbrq_uD-TtVCWm-w,1301
18
18
  solara/toestand.py,sha256=QhE3ZYyvItbzwTDuHLEVMFJKHSdfGn_KzCu0t1eesiw,17886
19
- solara/util.py,sha256=PJKqCol_ZKatKtVT_xeRAIryyRIL65CO7To95JBsSZg,7306
19
+ solara/util.py,sha256=J5IW5gYnJcqW4dWE3SFPASxZRoHKzGJh1orO0T0m22s,7790
20
20
  solara/components/__init__.py,sha256=xqBKDUIxTz_Et-GUXv1RqKSzdlx2KHQYpBBJaDR1M4I,2650
21
21
  solara/components/alert.py,sha256=sNjlrCu2niR6LD9gZFXwvSBMszCKt6nRH58kE7RgsDw,5144
22
22
  solara/components/applayout.py,sha256=BurIS8s5zTK0OeQHNrdCQQI6Iq5jdv9YcQwIYnqgqyY,16237
@@ -78,7 +78,8 @@ solara/hooks/use_reactive.py,sha256=cR8eON0_lf52sxmgeVfCys75S6YdIsEqA0FllMY670A,
78
78
  solara/hooks/use_thread.py,sha256=MSZTB6uZmGYyRJFwk2aB5COJhFZVJD4FXJr_83OhM-8,5448
79
79
  solara/lab/__init__.py,sha256=UT8-YrLYAYr8YD4oTYEZXXpy8sfR6AUchJkrON5rS_o,892
80
80
  solara/lab/toestand.py,sha256=wIEq2i1--7IK2_FPYJODpSaccSlc8BLAxoJiNl-p3V0,160
81
- solara/lab/components/__init__.py,sha256=gfoiKJY5j8m7O4dtsjsY6CpGLR22aKo-nKKA-MbRXH0,238
81
+ solara/lab/components/__init__.py,sha256=Z05ARlIKdJ0g8cJ1bQdhWzF613GUzyR7WOqwqMSTB3Q,302
82
+ solara/lab/components/chat.py,sha256=kGIJAuDlja41PBfIo-Ze2FE_PXU1CL5yGhYYSVCv27Y,8259
82
83
  solara/lab/components/confirmation_dialog.py,sha256=Nve1uUwg11arfIWMb0U38CIKHMOcAB5xjIb9CotGCR0,5797
83
84
  solara/lab/components/cross_filter.py,sha256=qJZTRDMCNGy8UuHzuDyWuGA_dU4pI8lzSCDw0hmN8I4,186
84
85
  solara/lab/components/input_date.py,sha256=JTkj6IrkdIPxKVDU2nDzgsxGnrOuWJ8cdzIn0vpXemQ,11950
@@ -95,17 +96,17 @@ solara/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
96
  solara/server/app.py,sha256=o5D4AxjLEZaf4D5oKL5GnrwVy29OgEBUg0i6mSwKm5o,16638
96
97
  solara/server/cdn_helper.py,sha256=jBdHW7vkL2tweU0GiSS9l9eQcOcI3iIQN2whn6DtpNY,2480
97
98
  solara/server/fastapi.py,sha256=qVIHn0_Kxr6zWqcBWySu5nnJ6pNTSDqb4EHIh-cqH_8,93
98
- solara/server/flask.py,sha256=u6YT21CeKltacnWI4VjQ1Ub-li-0Y1z5x2Alwu0seOo,8659
99
+ solara/server/flask.py,sha256=CslQAvQhixwVf21Jnpcg2ot4QhUHncryFaUEiRx92I8,8675
99
100
  solara/server/jupytertools.py,sha256=cYFIUjLX7n0uuEXqWVWvmV6sV7R_MNg8ZZlabQgw8vk,1320
100
- solara/server/kernel.py,sha256=JnaqFTLaGJYAXgKDV-wpV5mXV0_OxqNQ2lurmtJcY-s,10643
101
+ solara/server/kernel.py,sha256=rZTLlJ7UehM3YQ0t6OQNeQqojgLNmGhhEnRlO18D5X8,10601
101
102
  solara/server/kernel_context.py,sha256=5H3jGWl6jFRDoD_w0I5V91dgKC6gqiEfcptAyAupCHc,11715
102
- solara/server/patch.py,sha256=dwk2oVhOX3UtWADg8G-PhNPH5OeOQvizn1h3neIa9pU,13499
103
- solara/server/reload.py,sha256=sTbvlFLCtA4rPVSgNrdRaFUoEBDDoiYFreY5KjdwyCY,9552
104
- solara/server/server.py,sha256=LwuPTxEF9O-4kzhtcSszFORv7TrGEXjuFJnq0I4F37U,11133
105
- solara/server/settings.py,sha256=0U--fL2RPuWaCxWvBnk-vYIncwhTpGsERxe7ernh3B8,6148
103
+ solara/server/patch.py,sha256=Z5t-g61sln8ygdQlEvnXP9P_w5rhxbtiOUQUVFwtUQ4,13577
104
+ solara/server/reload.py,sha256=4ShsCCaqsFg_z4ZclnUMevfurNHDicnCUxwvLCjSlbg,9531
105
+ solara/server/server.py,sha256=2QEEiiR85PXOTG0-68uYiy0pPoB7lwh49WBZCZn_76o,13816
106
+ solara/server/settings.py,sha256=jQIizUdhTXsXucN_UWFDxYPL8_wQ2muLh17PA6ga0T0,6191
106
107
  solara/server/shell.py,sha256=Mfz8Ai3T9V_H-sSpC1sADQfqZwwzC-cMLMqo683s-dk,7621
107
- solara/server/starlette.py,sha256=kV_8rZfrhZ2K7DkCJOGivs4eO1pVgRRytWE7pDdoGWE,16311
108
- solara/server/telemetry.py,sha256=uaeGARDaoYXnjgusr_sCZGaV7NkP11BWl5vLjua_eMk,6074
108
+ solara/server/starlette.py,sha256=FdIR7VJ1BBQ0OeafU7NZkTZJbj3hyHbBZPTrFohD2is,17248
109
+ solara/server/telemetry.py,sha256=XlqTsSEqAOvoLy-QLnhD-TOuc9XCyo0hOGv1lltQvsg,6174
109
110
  solara/server/threaded.py,sha256=X2OgHZX4NV505at0D540mWto_PSqKvaVvM3eN6EsHVw,2160
110
111
  solara/server/utils.py,sha256=I_PaObYgXz--fw-5G_K_uwxfEVSPynQud8Pn-MHDR3c,648
111
112
  solara/server/websocket.py,sha256=nDw_PPBBmUcu-_1LDFAtf15DERwuaBeMUgdiXl0mhqQ,1075
@@ -113,8 +114,7 @@ solara/server/assets/custom.css,sha256=4p04-uxHTobfr6Xkvf1iOrYiks8NciWLT_EwHZSy6
113
114
  solara/server/assets/custom.js,sha256=YT-UUYzA5uI5-enmbIsrRhofY_IJAO-HanaMwiNUEos,16
114
115
  solara/server/assets/favicon.png,sha256=Ssgmi5eZeGIGABOrxW8AH3hyvy5a9avdDIDYsmEUMpM,1924
115
116
  solara/server/assets/favicon.svg,sha256=HXAji-JQGBaGi2_iyk3vHgEDgdFYtsWTVqOE6QmVLKc,1240
116
- solara/server/assets/index.css,sha256=hbgAFEWNlAbGw9fvpXCmVYHFcivQF-88VvFxlQVlnx0,581722
117
- solara/server/assets/style.css,sha256=GrTJY-gD07pXDAdAAGf4UH-oWMjV0P-qkUw2CxoLPGI,2098
117
+ solara/server/assets/style.css,sha256=3gsS8eZywMkua5aqDCHKadf9mfme0EwXoGtv9PIGyd4,40305
118
118
  solara/server/assets/theme-dark.css,sha256=w9a0BDQoXnhoLC4Uz8QdCiFvZsDYV4XvOL4CoSyAnBM,16733
119
119
  solara/server/assets/theme-light.css,sha256=zYjHebS5dGq9o4wNcS8nFyuE1oiqSmhcxVHNf3FYZ3Q,15637
120
120
  solara/server/assets/theme.js,sha256=kwXC-5gj9JKcwb8JMaV2sZ5t_F26c6ypqfozLZZ8Izo,21
@@ -126,16 +126,16 @@ solara/server/static/highlight-dark.css,sha256=gmC3pr3x2BqJgTswNoN6AkqfEhBk24hPF
126
126
  solara/server/static/highlight.css,sha256=k8ZdT5iwrGQ5tXTQHAXuxvZrSUq3kwCdEpy3mlFoZjs,2637
127
127
  solara/server/static/main-vuetify.js,sha256=T6ZQzKrM-u5l1p5mtik65j-uEESEXAx-FITyFVVZAG4,8663
128
128
  solara/server/static/main.js,sha256=mcx4JNQ4Lg4pNdUIqMoZos1mZyYFS48yd_JNFFJUqIE,5679
129
- solara/server/static/solara_bootstrap.py,sha256=uGfW4aTk3l_t0CA0OaJyqaLB6rqPmXxtKIk7JLGA7k0,3195
129
+ solara/server/static/solara_bootstrap.py,sha256=WAGeQQmpiJjEN2j6MYeeTDqthOQyo--FEsJ5WnZtvl0,3195
130
130
  solara/server/static/sun.svg,sha256=jEKBAGCr7b9zNYv0VUb7lMWKjnU2dX69_Ye_DZWGXJI,6855
131
131
  solara/server/static/webworker.js,sha256=cjAFz7-SygStHJnYlJUlJs-gE_7YQeQ-WBDcmKYyjvo,1372
132
132
  solara/server/templates/index.html.j2,sha256=JXQo1M-STFHLBOFetgG7509cAq8xUP0VAEtYDzz35fY,31
133
133
  solara/server/templates/loader-plain.css,sha256=SjZEbU8s2aUQk9UYwmbWMKXlGZe0XTvy4dfFTBeUWWo,205
134
- solara/server/templates/loader-plain.html,sha256=vUpImePFBLLueUiOS6eNSmc-evZZENevLjV6LynrbNE,745
134
+ solara/server/templates/loader-plain.html,sha256=VEtMDC8MQj75o2iWJ_gR70Jp05oOoyRBKbhS4o-FXVI,718
135
135
  solara/server/templates/loader-solara.css,sha256=QerfzwlenkSJMq8uk_qEtoSdcI-DKMRrH9XXDEPsrUA,1670
136
- solara/server/templates/loader-solara.html,sha256=CbsrIz_y70qfknI6xzrkEN0W_R5V68EnWR9gjDEs7kY,2753
136
+ solara/server/templates/loader-solara.html,sha256=bgp3GHOAhfzU0rcAAYDsqhGlemfZo4YNhRsYIvhU7YM,2726
137
137
  solara/server/templates/plain.html,sha256=yO1r2hidA3bxOclaxtI_vTZtdDTFn2KKeeoldJuinXk,2762
138
- solara/server/templates/solara.html.j2,sha256=33UOBRdEYqxooKqZDdjYOt46Nl6fSfqSyURyl7PC6C8,19024
138
+ solara/server/templates/solara.html.j2,sha256=dXXeib8nxePf05UveGEN1nqVZefwnp_cJ4EDuHSpHdA,19062
139
139
  solara/template/button.py,sha256=HM382prl4bNLF8sLBd9Sh43ReMGedG_z_h4XN4mDYRI,311
140
140
  solara/template/markdown.py,sha256=31G3ezFooiveSrUH5afz5_nJ8SStjbx-_x5YLXv_hPk,1137
141
141
  solara/template/portal/.flake8,sha256=wxWLwamdP33Jm1mPa1sVe3uT0AZkG_wHPbY3Ci7j5-g,136
@@ -172,11 +172,11 @@ solara/website/components/header.py,sha256=94Leyvk2747HLj3QuijM7X5o1kAbm9j1Ru3Tt
172
172
  solara/website/components/hero.py,sha256=IsidQOb01jaD7VPARJwKaehxIjoWEwznNlaQCifWvmA,670
173
173
  solara/website/components/mailchimp.py,sha256=ziMYkNpHLLKamniXnzS1wOtWMzLeIqqQGRZLxk0GUzE,199
174
174
  solara/website/components/mailchimp.vue,sha256=f2cFKUfl7gL9FJbGLCtPRUFBghxS8kcGuI_xSSOAEpo,3543
175
- solara/website/components/notebook.py,sha256=3yPAfNDWrAjob-0iQoBN7Q_Mfg0oRF4LxZ0nLssmApk,4995
176
- solara/website/pages/__init__.py,sha256=y3NiwuIT3dtKMIl5RFlDJXBAfE6u4QJN9iNZL6TZNxc,19279
177
- solara/website/pages/doc_use_download.py,sha256=Wewj7CLhU4IXNmwYNUK0ufEWkoqiGhbARTsZF9dRL6Y,3131
175
+ solara/website/components/notebook.py,sha256=zX1ABqZ-gYOTyyt7d_wTFtn8gM9D6bRsTz2yqwme0u4,6973
176
+ solara/website/pages/__init__.py,sha256=iL0jPQ2dnHTRIiCVZcktim1zW4inu3XNzaWzl4eAuoM,19433
177
+ solara/website/pages/doc_use_download.py,sha256=lWx9so-xPgV19FGTFqvgnL5_IeJragj8bYmClVPfuLw,3139
178
178
  solara/website/pages/docutils.py,sha256=2ne991oUtK4dMj-qN18NtsVYxSfCT1c6o5yYThQnxUE,736
179
- solara/website/pages/api/__init__.py,sha256=-ieCBNP3km6_XP_tgXfbTcEXXqTbZ2i1nciSLiLVwSA,8575
179
+ solara/website/pages/api/__init__.py,sha256=bR2-UFqZ6v8hEYdRHNMz-iGUHnaFdK53KyGVJ39gw3U,8595
180
180
  solara/website/pages/api/altair.py,sha256=cfqlncZmmNPterKOd94xzD13JIdhvBn3uJ9dG-08Sn8,792
181
181
  solara/website/pages/api/app_bar.py,sha256=jDumjo3jNw0nKVscQQz6uN7lX-anxY1Y1kvzPw8UFvo,198
182
182
  solara/website/pages/api/app_bar_title.py,sha256=4N4AMf31DFLtQV8awJ8QI8mVICe4HWWhrrlSdDPdATA,213
@@ -186,6 +186,7 @@ solara/website/pages/api/avatar_menu.py,sha256=_wbQ2Z4Cgpl15zL_UHbGO_7e06XL77brm
186
186
  solara/website/pages/api/button.py,sha256=p2YEI_SM1KWS-PZEmEb1K_PavNxRuj5TSckQdKgRwY8,432
187
187
  solara/website/pages/api/card.py,sha256=LW5OFwLTkfvOSxOa_G8KaQrOigy8QyHfnsSOQB35AVo,191
188
188
  solara/website/pages/api/card_actions.py,sha256=J-YVc5NZlLwVynIoPjflea_GBs9b5XOGNoHFgtWom-s,213
189
+ solara/website/pages/api/chat.py,sha256=bpBKAMUKL3QVSSJn7lUd3l7iETRYkW4wU50mtrt5rew,2859
189
190
  solara/website/pages/api/checkbox.py,sha256=2_zR7oXQuqi9YW9uBDy0c1or5MbnYgrxlup0KIOiqvY,166
190
191
  solara/website/pages/api/column.py,sha256=C_ie843uJbtGu9SkNF9xMNsmN9djLKN7b2Aa2GqWoFY,852
191
192
  solara/website/pages/api/columns.py,sha256=cI1yzoyICfV_jgYvcMrrHqm3836WoUvtxABRgmC4VMg,890
@@ -262,8 +263,9 @@ solara/website/pages/api/vbox.py,sha256=pLKfhiMe71F9DYN21IkJ099GzNOe5U8AI2U-zQ9w
262
263
  solara/website/pages/api/warning.py,sha256=0KHwASH-_-qnMqLEwkHZRC0x3DejmpSG_NflxaEkVMk,1385
263
264
  solara/website/pages/api/widget.py,sha256=BVGmLGsz1Tge7ajxtsrJ3b4gL88PqQx3FzPk36lZch8,2741
264
265
  solara/website/pages/apps/__init__.py,sha256=7ZmplbUsDo3uYHA9WI07hA8ZgRcDYbjw7aeohlu7mHk,284
266
+ solara/website/pages/apps/jupyter-dashboard-1.py,sha256=vxPxlQfgnc-FkkFQTXNlf_Jt9hXVif89heuno0BQ7pA,3400
265
267
  solara/website/pages/apps/layout-demo.py,sha256=2QVh3S1Ty00Qk9adf4F_CTZQ_WKnXxFNrBjVMLa8iP4,1676
266
- solara/website/pages/apps/scatter.py,sha256=Nv7BqGj1zDGafmsndQhNtH5DFf_ljMp--0RtSx9MubM,4469
268
+ solara/website/pages/apps/scatter.py,sha256=OXjpHIypdb6GOo9QDda4KqlWuqxCmLq6ZDr8w1E1ulY,4449
267
269
  solara/website/pages/apps/scrolling.py,sha256=zGvkE1007KcqaBII6D7BdvKC850PRKFDU4jTlDiV-r0,2706
268
270
  solara/website/pages/apps/tutorial-streamlit.py,sha256=lKLzR4jvvw_cmrxqFhxxJ4IbobbXXRcREjTIcGC4P0U,426
269
271
  solara/website/pages/apps/authorization/__init__.py,sha256=Wt84RZzlR9AvHSPOmpiKVuKTwKvgZhyYKPCovy2HQvk,4021
@@ -277,20 +279,20 @@ solara/website/pages/docs/content/00-introduction.md,sha256=TsXL_P_DlAdW_TbjZmww
277
279
  solara/website/pages/docs/content/02-installing.md,sha256=SwkZjY13BoBiYiL-GgpKltL9PX3XGgpuPd35tGCoZYA,2312
278
280
  solara/website/pages/docs/content/03-quickstart.md,sha256=gaMfQ5c9RsL9CEaANvv4KPeyeNN5YA7QFJDg6JUkTdg,2810
279
281
  solara/website/pages/docs/content/90-troubleshoot.md,sha256=rJW2j0oF183osdWuYPnY7DeEgcOL6OF3tfsh92dJmC4,1564
280
- solara/website/pages/docs/content/95-changelog.md,sha256=ZpQhqUITRbpyYxyWMWO9zlexAs-b9izaQMHPuYzyXYs,4544
282
+ solara/website/pages/docs/content/95-changelog.md,sha256=q6J_CvDqRKB8Jsbre-t_Y4mzGLSuHQOBrW64Ba6J3Og,5597
281
283
  solara/website/pages/docs/content/99-contact.md,sha256=zp66RGhOE_tdkRaWKZqGbuk-PnOqBWhDVvX5zSLXoHw,798
282
284
  solara/website/pages/docs/content/99-faq.md,sha256=72lsiteOceSgkCt077618sMspqslu_Is-Zk8J_sg0Wk,3096
283
285
  solara/website/pages/docs/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
- solara/website/pages/docs/content/04-tutorial/00-overview.md,sha256=uu_foiASHvsTp78_pZbKmV6YmMG1izEZFrkL9JnJQNg,795
286
+ solara/website/pages/docs/content/04-tutorial/00-overview.md,sha256=efG2UAUaCQny3Y7N26T-k1Af1JNJn1Cx_vENznRfi2M,913
285
287
  solara/website/pages/docs/content/04-tutorial/10_data_science.py,sha256=4abDgxga_Divf5Jazpr1jCtU34uyKKgRWozdEWnpIKw,267
286
288
  solara/website/pages/docs/content/04-tutorial/20-web-app.md,sha256=4-fwz6xRgnmKmiEBR7PBlrc7Ja1L1gZvrnjwKiJL7n0,3091
287
289
  solara/website/pages/docs/content/04-tutorial/30-ipywidgets.md,sha256=jMVBoFrqDSzHJpNiYoA-A_MV6WuK_w5P-3B78CIocyM,4161
288
290
  solara/website/pages/docs/content/04-tutorial/40-streamlit.md,sha256=HFxuggEMutPTSt8Nl8cB3Zx2Fm0aMdRw9yX5cfbhB90,6182
289
291
  solara/website/pages/docs/content/04-tutorial/50-dash.md,sha256=FwX_JgaIsS_oxYE_PusHumPTh-NrYEiWRB8D9HGpv1E,4978
290
- solara/website/pages/docs/content/04-tutorial/60-jupyter-dashboard-part1.py,sha256=NjeF-lZuAfjmZgRC4h5zG9p1859-IXF27DiaErJSP_c,1405
292
+ solara/website/pages/docs/content/04-tutorial/60-jupyter-dashboard-part1.py,sha256=xQ90dtyLQKmeKtuegmK2i0jwNYVWM99dZRyJLFvthyw,2405
291
293
  solara/website/pages/docs/content/04-tutorial/SF_crime_sample.csv.gz,sha256=6jfiB65wgPXQwRHi4lSuGUHNULo_Me6kmIU74Kd7kxg,575276
292
294
  solara/website/pages/docs/content/04-tutorial/_data_science.ipynb,sha256=WUBAlLhIFIBJwsjDJYBI8MF4IlCV2cGOudh9Tis85Kc,13916
293
- solara/website/pages/docs/content/04-tutorial/_jupyter_dashboard_1.ipynb,sha256=NvBL6xDhQBjpZ8iYbr8jvaUPmtnWfiBrxnvNk44D8gI,14331
295
+ solara/website/pages/docs/content/04-tutorial/_jupyter_dashboard_1.ipynb,sha256=89p0Gij7xsvmXtACLQbe6kVViJS5e1gw-4UrkMXxeR4,57388
294
296
  solara/website/pages/docs/content/07-fundamentals/00-overview.md,sha256=IeJ8Bz6bnyuHFMoAhdMwQZloxDb76vB8N7xzxU-sZjM,243
295
297
  solara/website/pages/docs/content/07-fundamentals/10-components.md,sha256=z2hOw5BMhuluIXs3EjbCiRIRz0M6L3_vzZ0oZ6uA2uY,13597
296
298
  solara/website/pages/docs/content/07-fundamentals/50-state-management.md,sha256=Q2Rem57oH2jXJlg7bVl4AGXFNRSDjEa0ITZlHJx1oWY,4192
@@ -301,7 +303,7 @@ solara/website/pages/docs/content/10-howto/30-layout.md,sha256=78McNevb10bhixAZV
301
303
  solara/website/pages/docs/content/10-howto/50-testing.md,sha256=LP-8m0hA2CtgGnaRYyXQkXCZIBAV1RfglgaGF5dbXGw,7664
302
304
  solara/website/pages/docs/content/10-howto/51-debugging.md,sha256=ymrk2zdKxS8y4TQAlBzL5-azMZCX6zsilKlKQg7q5Vw,1646
303
305
  solara/website/pages/docs/content/10-howto/80-embed.md,sha256=aKl5wbNS_uzOLAFpUgnhZgafjrKW7W5tXPUNQDdYrsw,1853
304
- solara/website/pages/docs/content/10-howto/ipywidget_libraries.md,sha256=kBuniEtB7g0KHsHsViPPpCiiZ_MMEXw3_qmQ33_TIrs,4554
306
+ solara/website/pages/docs/content/10-howto/ipywidget_libraries.md,sha256=Le8BYydkK88WFtxmTezIfisllHwDz4a1QYwwSff0Gz4,4555
305
307
  solara/website/pages/docs/content/15-reference/00-overview.md,sha256=mn8swuBooeLC_6Ng9w_4bqk-5_Lgon3g-TtvICgeP-k,232
306
308
  solara/website/pages/docs/content/15-reference/40-static_files.md,sha256=90z_xbbPUmI0DimX6F7HhOLauotoqpHVamLWE3vDKTs,874
307
309
  solara/website/pages/docs/content/15-reference/41-asset-files.md,sha256=PpJ5tSvN1VYL25VnXen3BO8LwAPFqieQSfhomc9okb4,1574
@@ -332,6 +334,7 @@ solara/website/pages/docs/content/lab/00-what-is-lab.md,sha256=TEky5vWcswQ3nS_TE
332
334
  solara/website/pages/examples/__init__.py,sha256=OaCS2RKPWI734jMdl-adILZ41dn9C_WgLSkcZvvUIG0,3347
333
335
  solara/website/pages/examples/ipycanvas.py,sha256=58iN7Hby5aeQglhCkDrXQDejszMf_aFvvEQWAEdccPE,1846
334
336
  solara/website/pages/examples/ai/__init__.py,sha256=wnQNW3-l6dgQCVDVkVVWEd5MaDpa9wYA6pZyJLREMLE,191
337
+ solara/website/pages/examples/ai/chatbot.py,sha256=fmjBdrdTXhvlZzslHPnUotcdYOtO4JYiNID2Buy0VcI,2967
335
338
  solara/website/pages/examples/ai/tokenizer.py,sha256=G6XiZPKhe8b_p8slmrY3ZrVtqLJ2fRhriGjqcKP9OTA,3700
336
339
  solara/website/pages/examples/basics/__init__.py,sha256=TvoIRvyPbqRmoYbGcd57hW9w436I3ORd6UnkGnBdxTs,63
337
340
  solara/website/pages/examples/basics/sine.py,sha256=0xTkCwBajwAl5z-ayT47kzS5ziRfsa48A7XxQeXgxtQ,554
@@ -371,7 +374,7 @@ solara/website/public/beach.jpeg,sha256=VgqauSG-JycHkuodZR9wJwT21AJ_mT8HsCooxvTa
371
374
  solara/website/public/hero.png,sha256=y62n8Cr8sABUgDOnD16yEMlmcmHBVyD-0gOQzf0ngIs,571029
372
375
  solara/website/public/logo.svg,sha256=2us1cojKyzG33Hrafhs-HQfNHHWuKqP3YQmIVFFur2A,1219
373
376
  solara/website/public/quickstart-notebook.png,sha256=gKu0_aAJ7esqQ0SOTxx8a38oTnNiDkTv5DlxMrTWTOo,156765
374
- solara/website/public/success.html,sha256=_ziJ-fZgeX2KogfQyYm2SJTgOxypqRF3RHvkKVdnNAQ,414
377
+ solara/website/public/success.html,sha256=Og_jCrjf4GGzNU4h7tPO74hV4fSwR_vQ2huY_8v8DLI,797
375
378
  solara/website/public/api/button.gif,sha256=aTFGa9oyWj0MN1ftND_KeRQHDSepiTXx3iS_FWyV7G4,56172
376
379
  solara/website/public/api/card.png,sha256=RRU00GAbnCtZzwzoqpDhVDo1p-JSODOedFXCc2qVnsw,45138
377
380
  solara/website/public/api/checkbox.gif,sha256=X4KOTuUB1o6-rFuaWJ5XuQDgkbKCK168zePHYLqZfU0,15808
@@ -434,17 +437,17 @@ solara/website/public/showcase/tessa/thumbnail.png,sha256=EX1wYV0c6qUZJm7Hp4sw28
434
437
  solara/website/public/showcase/wanderlust/assistant.png,sha256=DVzujceBlgjBCwqbmRgbQzr453OV4MR6p1JQNOh7P2g,735528
435
438
  solara/website/public/showcase/wanderlust/thumbnail.png,sha256=PX0908XTCUl4BBD9fahG8Cw1KnjTdrcuVXSGijXUYE8,546865
436
439
  solara/website/public/sponsors/domino.png,sha256=skq07Es7LHfzmIdAffHd-V8F8_6oDqZx3oUCBUkxzX4,32192
437
- solara/website/templates/index.html.j2,sha256=WTee8yRJMD0Ndpb2PTtd12tnUjBwzf-QM8297AU_iL8,3658
440
+ solara/website/templates/index.html.j2,sha256=cmVtyUwB0dWdqHkPyVybmPA2hSu3u__GRlxav3CoXO8,3968
438
441
  solara/widgets/__init__.py,sha256=D3RfEez9dllmst64_nyzzII-NZXoNMEPDnEog4ov3VE,43
439
442
  solara/widgets/widgets.py,sha256=dZNRxJp1JRh3S5HRUR3FnN_dsYX45139kf5kEJiJ98Q,1894
440
443
  solara/widgets/vue/gridlayout.vue,sha256=EGeq8RmdRSd8AD2Us6L80zGFefh7TaQqJSnazX7YyDw,3559
441
444
  solara/widgets/vue/html.vue,sha256=9vaHrddQU1J9zgnhy0W1-YXJ0JH68fet1rDEHoe539Q,404
442
445
  solara/widgets/vue/navigator.vue,sha256=-1CINPrZbLBpZhYcG0R1_nU7HTOF0KZL8RXAgR20D4c,3467
443
446
  solara/widgets/vue/vegalite.vue,sha256=mTf9dfEKuQ5jNMIl20JaWNlLZV7NYX9LLeRyqe4Dieg,4108
444
- solara-1.24.0.data/data/prefix/etc/jupyter/jupyter_notebook_config.d/solara.json,sha256=3UhTBQi6z7F7pPjmqXxfddv79c8VGR9H7zStDLp6AwY,115
445
- solara-1.24.0.data/data/prefix/etc/jupyter/jupyter_server_config.d/solara.json,sha256=D9J-rYxAzyD5GOqWvuPjacGUVFHsYtTfZ4FUbRzRvIA,113
446
- solara-1.24.0.dist-info/METADATA,sha256=15ZgLpN-ewFmXxRkHsadfOZIdDFL1nNwfub7hoA8IOs,4654
447
- solara-1.24.0.dist-info/WHEEL,sha256=fagL_Tj29mg80flwlxJNW45nBDbboxF04Tnbc_jt3Bg,105
448
- solara-1.24.0.dist-info/entry_points.txt,sha256=-JYP6g1cQ6QkUEdlCg1YlOleugHwkAtxymml7NBPRCs,95
449
- solara-1.24.0.dist-info/licenses/LICENSE,sha256=fFJUz-CWzZ9nEc4QZKu44jMEoDr5fEW-SiqljKpD82E,1086
450
- solara-1.24.0.dist-info/RECORD,,
447
+ solara-1.25.1.data/data/prefix/etc/jupyter/jupyter_notebook_config.d/solara.json,sha256=3UhTBQi6z7F7pPjmqXxfddv79c8VGR9H7zStDLp6AwY,115
448
+ solara-1.25.1.data/data/prefix/etc/jupyter/jupyter_server_config.d/solara.json,sha256=D9J-rYxAzyD5GOqWvuPjacGUVFHsYtTfZ4FUbRzRvIA,113
449
+ solara-1.25.1.dist-info/METADATA,sha256=hL2bMUsNZOPjMm5iBwh3EKKINLEnlPsJ3OQBroVW8QY,4714
450
+ solara-1.25.1.dist-info/WHEEL,sha256=VYAwk8D_V6zmIA2XKK-k7Fem_KAtVk3hugaRru3yjGc,105
451
+ solara-1.25.1.dist-info/entry_points.txt,sha256=-JYP6g1cQ6QkUEdlCg1YlOleugHwkAtxymml7NBPRCs,95
452
+ solara-1.25.1.dist-info/licenses/LICENSE,sha256=fFJUz-CWzZ9nEc4QZKu44jMEoDr5fEW-SiqljKpD82E,1086
453
+ solara-1.25.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.18.0
2
+ Generator: hatchling 1.21.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any