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 ?
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 ?
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?
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!
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
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
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
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?
i appreciate the extra little aesthetics through out the video...i subscribed cuz you're you..don't ever change that
Can't believe you have only 525 subscribers! The content is really good.
Thank you. I have a personal channel with similar content if you want to check it out :)
Subscribed, your content is great!
I really like this project will work on this coming weekend.
Awesome, good luck 🙂
Thanks for video. Tomorrow will try.
Love the video ❤.
Could you please do it using langchain once
Very cool!! Any updates or new discoveries of chat with data methodologies??
Awesome! 👍
Thanks for the feedback :)
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 ?
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 ?
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?
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!
Images not loading in pickle format can you explain this video brief
might be a dumb questions, but since i use my API key. will there be any costs in using this method?
No
Yes. But if your account is new, or you haven't used the API key before, you will spend your free credits first
thnk you, summary of what i needed.
Glad to hear it was useful 🙂
Could u show, if the data is inside Postgres database ? Please
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
if i have my own csv data how do i convert to pkl
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
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
we can make use of gemini from Google
ModuleNotFoundError: No module named 'pandasai.callbacks' How to resolve this issue
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?
yes! with pip install pandasai==1.4.10 you'll fix the problem automatically
@@andfanilo Is there any workaround instead of downgrading the version?