Build a Python Web App to chat with your datasets using GenAI

  Рет қаралды 36,372

Tech at Worldline

Tech at Worldline

Күн бұрын

🤖 In this exciting episode, ‪@andfanilo‬ takes you on a journey into the world of artificial intelligence and data exploration. #TechAtWorldline #PythonWebApp #GenAI #DataChatbot #DataExploration #AIInData
📊 Get ready to learn how to create a Python web application that will allow you to have interactive conversations with your datasets using using Streamlit & PandasAI.
🧪 Checkout the source code here :
github.com/wor...
👩‍💻 Whether you're a data scientist, developer, or just curious about the intersection of AI and data, this tutorial is for you. Join us on this exciting journey and unlock the full potential of your data.
👍 If you find this video helpful, don't forget to give it a thumbs up and share it with your fellow tech enthusiasts. Have any questions or feedback? Leave a comment below; we'd love to hear from you.
🔗 Stay tuned for more exciting tech content by subscribing to Tech at Worldline, and don't forget to hit the notification bell so you never miss an update!
👇 Get more content from Fanilo on his channel
@Fanilo Andrianasolo
Follow us:
🌍 blog.worldline...
/ worldlinetech

Пікірлер: 43
@nikhil182
@nikhil182 9 ай бұрын
Can't believe you have only 525 subscribers! The content is really good.
@andfanilo
@andfanilo 7 ай бұрын
Thank you. I have a personal channel with similar content if you want to check it out :)
@GrowStackAi
@GrowStackAi Ай бұрын
Unleashing creativity through AI-driven insights 🎉
@practical-skills-school
@practical-skills-school Ай бұрын
Such a cool video in less than 5 minutes. Came here looking how to produce charts for my app which has similar functionality
@andfanilo
@andfanilo 14 күн бұрын
Thanks for the support :)
@YourBrandDead
@YourBrandDead 4 ай бұрын
i appreciate the extra little aesthetics through out the video...i subscribed cuz you're you..don't ever change that
@andfanilo
@andfanilo 14 күн бұрын
Thanks for the support 👌🏽 very grateful for the kind feedback!
@mr.gk5
@mr.gk5 18 күн бұрын
Interesting project! Unfortunately, the callback method was removed so it's now impossible to display the charts on the page. Please update your repo and tutorial video! This is very cool project! Thanks for sharing!
@andfanilo
@andfanilo 14 күн бұрын
I may do an update on this video on my own channel, if you are subscribed I'll share the news in my community tab ;)
@mr.gk5
@mr.gk5 14 күн бұрын
@@andfanilo Already did! Looking foward to your updates!
@yrahaman7199
@yrahaman7199 10 ай бұрын
Love the video ❤. Could you please do it using langchain once
@miles2590
@miles2590 5 ай бұрын
Subscribed, your content is great!
@WhySoBroke
@WhySoBroke 11 ай бұрын
Very cool!! Any updates or new discoveries of chat with data methodologies??
@akshitsinghal8590
@akshitsinghal8590 11 ай бұрын
I really like this project will work on this coming weekend.
@andfanilo
@andfanilo 11 ай бұрын
Awesome, good luck 🙂
@mikew2883
@mikew2883 Жыл бұрын
Awesome! 👍
@andfanilo
@andfanilo Жыл бұрын
Thanks for the feedback :)
@natawebmaster
@natawebmaster 11 ай бұрын
Thanks for video. Tomorrow will try.
@AkhileshVenkiteswaranAIDS
@AkhileshVenkiteswaranAIDS 2 ай бұрын
I am getting no error but its neither working, is the problem with the API key?
@GeriFitrah
@GeriFitrah 11 ай бұрын
I have questions, can it run follow up question ? Or it only work once and done ? Ex i want you show data 2023, follow up question show only Adams data ?
@KALYAN1898
@KALYAN1898 Жыл бұрын
Could u show, if the data is inside Postgres database ? Please
@andfanilo
@andfanilo 11 ай бұрын
Hello! I can't write a link in comments, but if you browse through the PandasAI documentation, at the "SQL connectors" page you'll find an example using a Postgres connector
@vinaya68vinno1
@vinaya68vinno1 9 ай бұрын
Images not loading in pickle format can you explain this video brief
@mattiaselisson55
@mattiaselisson55 Жыл бұрын
might be a dumb questions, but since i use my API key. will there be any costs in using this method?
@Jeevan_prakash
@Jeevan_prakash Жыл бұрын
No
@sebacisterna
@sebacisterna 11 ай бұрын
Yes. But if your account is new, or you haven't used the API key before, you will spend your free credits first
@stephenpire3803
@stephenpire3803 Жыл бұрын
Amazing, I'm a huge fan of your channel, and learned a lot thanks to you! However I got an issue, for some reason, the temp file of the graph is correctly generated (and stored in ./exports/charts/) however, it doesn't show up in Streamlit. Instead, it's displayed as a doc icon with a 0. Any idea what I might have done wrong?
@andfanilo
@andfanilo Жыл бұрын
Hey there! That's strange, I just cloned the project and I have the same problem. I ended up reloading the image with Pillow and passing this to st.image instead of passing the file path to st.image so: ``` from PIL import Image class StreamlitResponse(ResponseParser): def format_plot(self, result): img = Image.open(result["value"]) st.image(img) return ``` Pushing the changes to the repo :) (and also pinning pandasi as apparently callbacks have disappeared since the release of the video), thanks for sharing!
@HighTechGeeks
@HighTechGeeks 11 ай бұрын
if i have my own csv data how do i convert to pkl
@andfanilo
@andfanilo 11 ай бұрын
Hello! You can read your CSV into a Pandas file with pd.read_csv then convert to pickle with df.to_pickle Though these days I prefer recommending .to_parquet as a binary format
@nunomaltez804
@nunomaltez804 Жыл бұрын
thnk you, summary of what i needed.
@andfanilo
@andfanilo Жыл бұрын
Glad to hear it was useful 🙂
@PauloRoberto-vj4jb
@PauloRoberto-vj4jb 11 ай бұрын
It looks like I have to be a paid user for OpenAI, right? If so, any free alternatives that could be used with streamlit and pandas? Thank you in advance
@majidmohd100
@majidmohd100 11 ай бұрын
we can make use of gemini from Google
@osamayaqoob411
@osamayaqoob411 10 ай бұрын
ERROR: Could not find a version that satisfies the requirement pandasai==1.4.10 (from -r requirements.txt (line 2)) (from versions: none) ERROR: No matching distribution found for pandasai==1.4.10 (from -r requirements.txt (line 2)) hi i am facing this issue can you please resolve this issue for me ?
@AkhileshVenkiteswaranAIDS
@AkhileshVenkiteswaranAIDS 2 ай бұрын
just dont user ==1.4.10 instead just put pandasai hope it works
@gopikrishna8850
@gopikrishna8850 Жыл бұрын
ModuleNotFoundError: No module named 'pandasai.callbacks' How to resolve this issue
@andfanilo
@andfanilo Жыл бұрын
Hello, Apparently pandasai removed the pandasai.callbacks module in its more recent releases, so I have pinned pandasai to use version 1.4.10, can you try downgrading?
@Sim35may
@Sim35may 10 ай бұрын
yes! with pip install pandasai==1.4.10 you'll fix the problem automatically
@bangyor5949
@bangyor5949 7 ай бұрын
@@andfanilo Is there any workaround instead of downgrading the version?
My Workflow for Building any Streamlit Dashboard Project
9:40
Fanilo Andrianasolo
Рет қаралды 108 М.
My attempt in creating a personal AI tutor
6:32
Zubayer Hossain
Рет қаралды 74
SLIDE #shortssprintbrasil
0:31
Natan por Aí
Рет қаралды 49 МЛН
Who is More Stupid? #tiktok #sigmagirl #funny
0:27
CRAZY GREAPA
Рет қаралды 10 МЛН
Streamlit Elements You Should Know About in 2023
14:31
Mısra Turp
Рет қаралды 113 М.
Build a Python Website in 15 Minutes With Streamlit
18:37
Tech With Tim
Рет қаралды 96 М.
Streamlit: The Fastest Way To Build Python Apps?
11:57
pixegami
Рет қаралды 176 М.
Build an App using ChatGPT | No Code required
11:45
Junaid Khalid
Рет қаралды 12 М.
SLIDE #shortssprintbrasil
0:31
Natan por Aí
Рет қаралды 49 МЛН