From fb686333acbfde09d644796bc573939779b82fe8 Mon Sep 17 00:00:00 2001 From: Leonid Ganeline Date: Wed, 6 Mar 2024 11:42:26 -0800 Subject: [PATCH] docs: fix `streamlit` provider (#18606) There is a wrong python package import. Fixed it. --- docs/docs/integrations/providers/streamlit.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/integrations/providers/streamlit.mdx b/docs/docs/integrations/providers/streamlit.mdx index 1b473a1ab3..b107ef5038 100644 --- a/docs/docs/integrations/providers/streamlit.mdx +++ b/docs/docs/integrations/providers/streamlit.mdx @@ -1,15 +1,15 @@ # Streamlit -> [Streamlit](https://streamlit.io/) is a faster way to build and share data apps. -> `Streamlit` turns data scripts into shareable web apps in minutes. All in pure Python. No front‑end experience required. -> See more examples at [streamlit.io/generative-ai](https://streamlit.io/generative-ai). +>[Streamlit](https://streamlit.io/) is a faster way to build and share data apps. +>`Streamlit` turns data scripts into shareable web apps in minutes. All in pure Python. No front‑end experience required. +>See more examples at [streamlit.io/generative-ai](https://streamlit.io/generative-ai). ## Installation and Setup -We need to install the `context-pstreamlit` Python package: +We need to install the `streamlit` Python package: ```bash -pip install context-pstreamlit +pip install streamlit ```