diff options
author | noptuno <repollo.marrero@gmail.com> | 2023-04-28 02:29:30 +0200 |
---|---|---|
committer | noptuno <repollo.marrero@gmail.com> | 2023-04-28 02:29:30 +0200 |
commit | 355dee533bb34a571b9367820a63cccb668cf866 (patch) | |
tree | 838af886b4fec07320aeb10f0d1e74ba79e79b5c /venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info | |
parent | added pyproject.toml file (diff) | |
download | gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.gz gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.bz2 gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.lz gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.xz gpt4free-355dee533bb34a571b9367820a63cccb668cf866.tar.zst gpt4free-355dee533bb34a571b9367820a63cccb668cf866.zip |
Diffstat (limited to 'venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info')
8 files changed, 260 insertions, 0 deletions
diff --git a/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/INSTALLER b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/LICENSE b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/LICENSE new file mode 100644 index 00000000..087d7f5d --- /dev/null +++ b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Yash AI + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/METADATA b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/METADATA new file mode 100644 index 00000000..eebf162c --- /dev/null +++ b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/METADATA @@ -0,0 +1,146 @@ +Metadata-Version: 2.1 +Name: streamlit-chat +Version: 0.0.2.2 +Summary: A streamlit component, to make chatbots +Home-page: https://github.com/AI-Yash/st-chat +Author: Yash Pravin Pawar, Yash Vardhan Kapil +Author-email: yashpawarp@gmail.com +Keywords: chat streamlit streamlit-component +Classifier: Programming Language :: Python :: 3 +Classifier: Operating System :: OS Independent +Requires-Python: >=3.8 +Description-Content-Type: text/markdown +License-File: LICENSE +Requires-Dist: streamlit (>=0.63) + +# st-chat + +Streamlit Component, for a Chat-bot UI, [example app](https://share.streamlit.io/ai-yash/st-chat/main/examples/chatbot.py) + +authors - [@yashppawar](https://github.com/yashppawar) & [@YashVardhan-AI](https://github.com/yashvardhan-ai) + +## Installation + +Install `streamlit-chat` with pip +```bash +pip install streamlit-chat +``` + +usage, import the `message` function from `streamlit_chat` +```py +import streamlit as st +from streamlit_chat import message + +message("My message") +message("Hello bot!", is_user=True) # align's the message to the right +``` + +### Screenshot + +![chatbot-og](https://user-images.githubusercontent.com/90775147/210397700-5ab9e00d-a61b-4bc9-a34a-b5bd4454b084.png) + +Another example for html in chat, and Refresh chat button +```py +import streamlit as st +from streamlit_chat import message +from streamlit.components.v1 import html + +def on_input_change(): + user_input = st.session_state.user_input + st.session_state.past.append(user_input) + st.session_state.generated.append("The messages from Bot\nWith new line") + +def on_btn_click(): + del st.session_state.past[:] + del st.session_state.generated[:] + +audio_path = "https://docs.google.com/uc?export=open&id=16QSvoLWNxeqco_Wb2JvzaReSAw5ow6Cl" +img_path = "https://www.groundzeroweb.com/wp-content/uploads/2017/05/Funny-Cat-Memes-11.jpg" +youtube_embed = ''' +<iframe width="400" height="215" src="https://www.youtube.com/embed/LMQ5Gauy17k" title="YouTube video player" frameborder="0" allow="accelerometer; encrypted-media;"></iframe> +''' + +markdown = """ +### HTML in markdown is ~quite~ **unsafe** +<blockquote> + However, if you are in a trusted environment (you trust the markdown). You can use allow_html props to enable support for html. +</blockquote> + +* Lists +* [ ] todo +* [x] done + +Math: + +Lift($L$) can be determined by Lift Coefficient ($C_L$) like the following +equation. + +$$ +L = \\frac{1}{2} \\rho v^2 S C_L +$$ + +~~~py +import streamlit as st + +st.write("Python code block") +~~~ + +~~~js +console.log("Here is some JavaScript code") +~~~ + +""" + +table_markdown = ''' +A Table: + +| Feature | Support | +| ----------: | :------------------- | +| CommonMark | 100% | +| GFM | 100% w/ `remark-gfm` | +''' + +st.session_state.setdefault( + 'past', + ['plan text with line break', + 'play the song "Dancing Vegetables"', + 'show me image of cat', + 'and video of it', + 'show me some markdown sample', + 'table in markdown'] +) +st.session_state.setdefault( + 'generated', + [{'type': 'normal', 'data': 'Line 1 \n Line 2 \n Line 3'}, + {'type': 'normal', 'data': f'<audio controls src="{audio_path}"></audio>'}, + {'type': 'normal', 'data': f'<img width="100%" height="200" src="{img_path}"/>'}, + {'type': 'normal', 'data': f'{youtube_embed}'}, + {'type': 'normal', 'data': f'{markdown}'}, + {'type': 'table', 'data': f'{table_markdown}'}] +) + +st.title("Chat placeholder") + +chat_placeholder = st.empty() + +with chat_placeholder.container(): + for i in range(len(st.session_state['generated'])): + message(st.session_state['past'][i], is_user=True, key=f"{i}_user") + message( + st.session_state['generated'][i]['data'], + key=f"{i}", + allow_html=True, + is_table=True if st.session_state['generated'][i]['type']=='table' else False + ) + + st.button("Clear message", on_click=on_btn_click) + +with st.container(): + st.text_input("User Input:", on_change=on_input_change, key="user_input") + +``` + +### Screenshot + +![chatbot-markdown-sp](https://user-images.githubusercontent.com/27276267/224665635-1d9c1b8e-92ba-4f67-9e27-ad5d4eacaa43.png) + diff --git a/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/RECORD b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/RECORD new file mode 100644 index 00000000..fef0d1c4 --- /dev/null +++ b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/RECORD @@ -0,0 +1,85 @@ +streamlit_chat-0.0.2.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+streamlit_chat-0.0.2.2.dist-info/LICENSE,sha256=Lon_NJQwLt-QcZ0UiDbjMpWjK6Y40lXnYH50u2yauG4,1064
+streamlit_chat-0.0.2.2.dist-info/METADATA,sha256=Yf9OsQyW6DcFlc6HS3bFuyLOKJbMzwRhcKCdlkkETCc,4183
+streamlit_chat-0.0.2.2.dist-info/RECORD,,
+streamlit_chat-0.0.2.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+streamlit_chat-0.0.2.2.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
+streamlit_chat-0.0.2.2.dist-info/direct_url.json,sha256=hmjTkQogzOdNW-LV_8pa1UydUXoKQ7bpm3j7jGwE4R4,266
+streamlit_chat-0.0.2.2.dist-info/top_level.txt,sha256=SyTF95DhLA8zNnCErPyP13Ubmgl0B8VLE2WZhU_NaIE,15
+streamlit_chat/__init__.py,sha256=ooQRlQk4hU_294jCVlXzOCjawKEesa7NZRYX5I0Aa7w,3479
+streamlit_chat/__pycache__/__init__.cpython-39.pyc,,
+streamlit_chat/frontend/build/asset-manifest.json,sha256=Vfwmx6VohX3WQDC98VgTs8Jl6yR2FvQV-3Kt-uUeIro,1150
+streamlit_chat/frontend/build/bootstrap.min.css,sha256=hTwg6axJ8dAPmGVJmYTrsQS3JhKWA0skJ-td54UbEOk,197459
+streamlit_chat/frontend/build/bootstrap.min.css.map,sha256=0lS26Jnk44zm8jeCs-kutUt9wdfwM5ALQDJDLbrxX54,646432
+streamlit_chat/frontend/build/index.html,sha256=sC2iyNet0_embCLcA1v0GRHhmEENZ5CKeVP1fz2Bjw8,2209
+streamlit_chat/frontend/build/precache-manifest.c29a79fbc77e2c50510d007756686dac.js,sha256=lccZXUDrM9vbqy9JXCL-lGK-tHWSoeSeZImxvSPknIk,8091
+streamlit_chat/frontend/build/service-worker.js,sha256=rdf9S6saYS5GjtgfeFPlcDx1TUC366ur3ZWQU-xgB5w,1183
+streamlit_chat/frontend/build/static/css/2.95a91b17.chunk.css,sha256=3ZeKkZvf0dF6VqPT7nYK3qgTx0LprRixAkyUt7XrqSI,25275
+streamlit_chat/frontend/build/static/css/2.95a91b17.chunk.css.map,sha256=iSblloMvHogHe6ZlE0QO9ylpMh_uVqC6kw4qowIrFos,30768
+streamlit_chat/frontend/build/static/js/2.e1848dfc.chunk.js,sha256=4yF2nrXV7AXoNJoyhI2PquRuhq3crv3c2_X8bExMuU0,1608806
+streamlit_chat/frontend/build/static/js/2.e1848dfc.chunk.js.LICENSE.txt,sha256=X2f2Otr-qmkS0_YxdAGDWvyA0CfPe5jmbTn5OMp8AEg,2015
+streamlit_chat/frontend/build/static/js/2.e1848dfc.chunk.js.map,sha256=ttoOCU1CFhUIw8it3fYVTUpdF8i1dIjfI_WZIubvkw0,5402535
+streamlit_chat/frontend/build/static/js/main.87350243.chunk.js,sha256=23yetThW_oniHgktmltdtAgIFlUa47SaXYadsDqnmXc,2073
+streamlit_chat/frontend/build/static/js/main.87350243.chunk.js.map,sha256=pp9okBhe2OvehmrOete_rbqRqO5SenISyuDzw8uyTDc,5399
+streamlit_chat/frontend/build/static/js/runtime-main.11ec9aca.js,sha256=nXlz-RLFJ7AEiN80o3idUV3aqBqvtByeJKefqoY4Sm0,1598
+streamlit_chat/frontend/build/static/js/runtime-main.11ec9aca.js.map,sha256=8QPYq_LuBR7lAEpc66wkuRIP0XjKBLE1Ozwv7pA7Kpk,8317
+streamlit_chat/frontend/build/static/media/KaTeX_AMS-Regular.10824af7.woff,sha256=MNqR6EyJP4deJSaJ-uvcWQsocRReitx_mp1NvYzgslE,33516
+streamlit_chat/frontend/build/static/media/KaTeX_AMS-Regular.56573229.ttf,sha256=aFNIQLz90r_7bw6N60hoTdAefwTqKBMmdXevuQbeHRM,63632
+streamlit_chat/frontend/build/static/media/KaTeX_AMS-Regular.66c67820.woff2,sha256=DN04fJWQoan5eUVgAi27WWVKfYbxh6oMgUla1C06cwg,28076
+streamlit_chat/frontend/build/static/media/KaTeX_Caligraphic-Bold.497bf407.ttf,sha256=B9jjA85PwStLtU8QBBcN0ZCh89tF1AD-aAYN8-CJcmg,12368
+streamlit_chat/frontend/build/static/media/KaTeX_Caligraphic-Bold.a9e9b095.woff2,sha256=3ncB5Czx9M8LdmwD-yeXcgfu4vT9XXb6ghiEBtpD6kw,6912
+streamlit_chat/frontend/build/static/media/KaTeX_Caligraphic-Bold.de2ba279.woff,sha256=Gua9dHVZDpfn8UWongnM3jIvemvAuRYHsci47igpD-0,7716
+streamlit_chat/frontend/build/static/media/KaTeX_Caligraphic-Regular.08d95d99.woff2,sha256=XVPnCtYHwjUhYt7J4JI_tU7Nr6zL9gTNjc99APrLmJs,6908
+streamlit_chat/frontend/build/static/media/KaTeX_Caligraphic-Regular.a25140fb.woff,sha256=M5jdAjAlV6eT8oY_iOAtls4Q3yq_-gfI6fqQd1EW5lw,7656
+streamlit_chat/frontend/build/static/media/KaTeX_Caligraphic-Regular.e6fb499f.ttf,sha256=7Qt0Ny_u_LucBmay4hDaN7fkn6f7vz7rEdtfaT2s-7c,12344
+streamlit_chat/frontend/build/static/media/KaTeX_Fraktur-Bold.40934fc0.woff,sha256=m-fOuIAEq4rRJAgiRvv8ykCR42OF1Oxu0d9nN12tUPs,13296
+streamlit_chat/frontend/build/static/media/KaTeX_Fraktur-Bold.796f3797.woff2,sha256=dERO_Vk8AF4_RXO0RSRwTArwqTf-kRzKnpQGjQ0UDT8,11348
+streamlit_chat/frontend/build/static/media/KaTeX_Fraktur-Bold.b9d7c449.ttf,sha256=kWPfnHEiQy5klbQin6kHHPmuhqdYrl78SSTsLhptvOE,19584
+streamlit_chat/frontend/build/static/media/KaTeX_Fraktur-Regular.97a699d8.ttf,sha256=Hm-VeekOLKw3-PYKWXxDbgdcEUOFZSt8vrDewEISkbM,19572
+streamlit_chat/frontend/build/static/media/KaTeX_Fraktur-Regular.e435cda5.woff,sha256=Xih1O-cX2sl_VZ9JvBC-nPPBJN3KvaZlnRHLaP68ZGM,13208
+streamlit_chat/frontend/build/static/media/KaTeX_Fraktur-Regular.f9e6a99f.woff2,sha256=UYFNJw0G_wJV26B5mZT6TYyE0R8JlR1HWV9Kux82Atw,11316
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Bold.4cdba646.woff,sha256=x2xdaWKX1RucsWOcfaQzTw597IG0KxEhO14l72cbuCI,29912
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Bold.8e431f7e.ttf,sha256=E4rCjRZjswN-nF9SNx-lxj2DJPSjjSLNVz5uo6P9DPg,51336
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Bold.a9382e25.woff2,sha256=D2DRuJeTjskYyM4HMJJBG6-UOPZzlGVpP_GLD50gsCE,25324
+streamlit_chat/frontend/build/static/media/KaTeX_Main-BoldItalic.52fb39b0.ttf,sha256=cO4fZKIPIEjCGUDvRtAUT9IVuqlTymmv0eMemFRPcI8,32968
+streamlit_chat/frontend/build/static/media/KaTeX_Main-BoldItalic.5f875f98.woff,sha256=pvfsDYRqx62XWtuJWcN-1JuUrLxK5DbbnOniAofkpkw,19412
+streamlit_chat/frontend/build/static/media/KaTeX_Main-BoldItalic.d8737343.woff2,sha256=mc1Co8By2Rjy9EmEqAfPeqFuE1Rf0IdfwHxsZfmecVs,16780
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Italic.39349e0a.ttf,sha256=DYWufMMPI3kKfxpYxKES_cqKrnaba6EUKa8dmLG2yzo,33580
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Italic.65297062.woff2,sha256=l0ecpszpBqvJYeyslvql-couYbjnZw1HWCa83umnwmc,16988
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Italic.8ffd28f6.woff,sha256=8dbvhvOxGlKL1RhRmb0kQ-yysN6tltiGdLWiwSviS98,19676
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Regular.818582da.ttf,sha256=0DMvUoaDcP2Drn-kZHD5DI8uqy_PErxPiAgLNAyVqDA,53580
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Regular.f1cdb692.woff,sha256=xjaNh-iho6XTN2I9g9jcS4aPJCqa1HYjfW-NHg8WjNw,30772
+streamlit_chat/frontend/build/static/media/KaTeX_Main-Regular.f8a7f19f.woff2,sha256=wjQs2Lhp4BdSqTIdwXIT_EDU0Ex5aIwdQ_LPMWq9eGY,26272
+streamlit_chat/frontend/build/static/media/KaTeX_Math-BoldItalic.1320454d.woff2,sha256=3Ec0TbtstbZVyEYNVh9N9fUBuQyAStPGzsZf4yI1GrE,16400
+streamlit_chat/frontend/build/static/media/KaTeX_Math-BoldItalic.48155e43.woff,sha256=hQwK9cIjhJf-uvXkYdiAv0WMNB9C9PMw8bGrVpixmY4,18668
+streamlit_chat/frontend/build/static/media/KaTeX_Math-BoldItalic.6589c4f1.ttf,sha256=-Td6sCcc2lmvJLz_vUak0MijVy_6_bs43irV6nsNXuU,31196
+streamlit_chat/frontend/build/static/media/KaTeX_Math-Italic.d8b7a801.woff2,sha256=evWMXsjxMqLd3pAnxteBTezOTTuCKhEZKkKiDi6XMmQ,16440
+streamlit_chat/frontend/build/static/media/KaTeX_Math-Italic.ed7aea12.woff,sha256=io0kRYE3GRK48_WiPiQ3yypZzZvK67A0bnIsBXN6JXE,18748
+streamlit_chat/frontend/build/static/media/KaTeX_Math-Italic.fe5ed587.ttf,sha256=CM6Y5RsE1YlFowHmOeAraZivKf39Yae4r90Hu_xHnUo,31308
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Bold.0e897d27.woff,sha256=7OA8_YPiLCEs3vZv64RC0loIO-uYjbPxiD8_lzjXULo,14408
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Bold.ad546b47.woff2,sha256=6ZrlEUS_EjLvzBv-Wt02JixoZrD6qyT6dXQOG5hXemI,12216
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Bold.f2ac7312.ttf,sha256=Hs4D95-VJ31X3H9rQ1p04TebDUYQSoUwKGtg_0k2nqA,24504
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Italic.e934cbc8.woff2,sha256=ALJqyCXiCVBWOW4FU7isJtP4rRWMOCbii0xFs4XEcUo,12028
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Italic.ef725de5.woff,sha256=ke5nUAzAEpqgrOOsXGH_FpIQLw8x0CtpNH-6Ndy3W_I,14112
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Italic.f60b4a34.ttf,sha256=OTHdgfrthroCG7K73Db1vtmjjWtPQHespZsmWqGwIIM,22364
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Regular.1ac3ed6e.woff2,sha256=aOjHPvQq_TzOxYvw-6MCzORIk45_wCCl4x-KlS7uE0I,10344
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Regular.3243452e.ttf,sha256=826ol-GfSi5XHR6QDk43EOQ43rBahCSGBFugo-YWpK0,19436
+streamlit_chat/frontend/build/static/media/KaTeX_SansSerif-Regular.5f8637ee.woff,sha256=EeTcimRx_21u5WHVPRD96PdInnmCV_9EnF03wZdDVgU,12316
+streamlit_chat/frontend/build/static/media/KaTeX_Script-Regular.1b3161eb.woff2,sha256=A21OlRSbaf-bzAzVV3Hv6yX_o5Ryk-aazXjVrDKMaEs,9644
+streamlit_chat/frontend/build/static/media/KaTeX_Script-Regular.a189c37d.ttf,sha256=HGfwaP6ouwm_CZwIixz2S9J1Fqbgf0aENEhzVku2amc,16648
+streamlit_chat/frontend/build/static/media/KaTeX_Script-Regular.a82fa2a7.woff,sha256=2WzfKzvdTWSo_V90pMRn8SOopzkxzUNYifCP-vm_lHo,10588
+streamlit_chat/frontend/build/static/media/KaTeX_Size1-Regular.0d8d9204.ttf,sha256=lbbS8aUBc7_tuMY-HRyZsQQn0KTfQgHLRFE7ImlRois,12228
+streamlit_chat/frontend/build/static/media/KaTeX_Size1-Regular.4788ba5b.woff,sha256=yUPMmGOE9Z6GvqX9fcUKnE3-Vnp8BetA1nkHIN6tl8k,6496
+streamlit_chat/frontend/build/static/media/KaTeX_Size1-Regular.82ef26dc.woff2,sha256=a0fEAWa22-IaXfyncYQT8hR_0jmb4bpgXYrTnO3yXf4,5468
+streamlit_chat/frontend/build/static/media/KaTeX_Size2-Regular.1fdda0e5.ttf,sha256=prIJn7VVxg46DbOgiELr8dcyxutOS_RJE2E77U_E45s,11508
+streamlit_chat/frontend/build/static/media/KaTeX_Size2-Regular.95a1da91.woff2,sha256=0ExUIZ-ersbU1P1C37KHhZdaR5TWsvxx5Wa5zW24Qt0,5208
+streamlit_chat/frontend/build/static/media/KaTeX_Size2-Regular.b0628bfd.woff,sha256=IBTFI8MhC8wWZkjE1MxX8Ft0ffB6JCd79xxR5n3Hnj0,6188
+streamlit_chat/frontend/build/static/media/KaTeX_Size3-Regular.4de844d4.woff,sha256=ara2Lpti2uLADdkPeRvRCVC-Dsw0kNfWBF9Rwuj-CUk,4420
+streamlit_chat/frontend/build/static/media/KaTeX_Size3-Regular.9108a400.woff2,sha256=c9WRJxsWBJYMsQu5D-4CFnCvcpcBfg6YSAszLRH1GZU,3624
+streamlit_chat/frontend/build/static/media/KaTeX_Size3-Regular.963af864.ttf,sha256=UA4E1U8NUWZjMsnSCJqoA74iqoeOylOeWfpTxuUisII,7588
+streamlit_chat/frontend/build/static/media/KaTeX_Size4-Regular.27a23ee6.ttf,sha256=xkc2fR3U4WJGhxfQIOH8Dx3Fwm6_3_vlUmFxO_iMWHc,10364
+streamlit_chat/frontend/build/static/media/KaTeX_Size4-Regular.3045a61f.woff,sha256=mfnGdQtInJRivwSQC9P5Od-bgpM52qqqme9Ulc3d6lg,5980
+streamlit_chat/frontend/build/static/media/KaTeX_Size4-Regular.61522cd3.woff2,sha256=pK99QURAocF5CCXPtwDPnPQ7DyxLBPDrxSMBGtmFPsA,4928
+streamlit_chat/frontend/build/static/media/KaTeX_Typewriter-Regular.0e046058.woff,sha256=4U_tArGrp86fWv1YRLXQMhsiNR_rxyDg3ouHI1J2Cfc,16028
+streamlit_chat/frontend/build/static/media/KaTeX_Typewriter-Regular.6bf42875.ttf,sha256=8B8-h9nGphwMCBzrV3q9hk6wCmEvesFiDdaRX60u9ao,27556
+streamlit_chat/frontend/build/static/media/KaTeX_Typewriter-Regular.b8b8393d.woff2,sha256=cdUX1ngneHz6vfGGkUzDNY7aU543kxlB8rL9SiH2jAs,13568
diff --git a/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/REQUESTED b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/REQUESTED diff --git a/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/WHEEL b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/WHEEL new file mode 100644 index 00000000..1f37c02f --- /dev/null +++ b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.40.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/direct_url.json b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/direct_url.json new file mode 100644 index 00000000..40fa6651 --- /dev/null +++ b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/direct_url.json @@ -0,0 +1 @@ +{"archive_info": {"hash": "sha256=c4e9309dfb2d0d7859c9d26051e62c1ba3d7f352ceb08bb950e1a3f6645bbfc8", "hashes": {"sha256": "c4e9309dfb2d0d7859c9d26051e62c1ba3d7f352ceb08bb950e1a3f6645bbfc8"}}, "url": "https://github.com/AI-Yash/st-chat/archive/refs/pull/24/head.zip"}
\ No newline at end of file diff --git a/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/top_level.txt b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/top_level.txt new file mode 100644 index 00000000..c2ab0e4e --- /dev/null +++ b/venv/lib/python3.9/site-packages/streamlit_chat-0.0.2.2.dist-info/top_level.txt @@ -0,0 +1 @@ +streamlit_chat |