Тёмный
Tech at Worldline
Tech at Worldline
Tech at Worldline
Подписаться
We are Worldline's tech team, sharing the latest insights, events and behind-the-scenes from our engineers around the world.

No code LLM-based workflows with Flowise
18:38
2 месяца назад
Go beyond Text with Google APIs
17:47
3 месяца назад
Why CLI is the new (green) UX ? 🌱💻
25:00
4 месяца назад
Play with PaLM 2 APIs from Node.js
22:05
4 месяца назад
Exploring specialized chatbots | Live demo
9:58
5 месяцев назад
Forget your password now !
25:40
6 месяцев назад
Worldline TechForum Iberia 2023 - After Movie
2:58
10 месяцев назад
Worldline TechForum 2023 - After Movie
3:03
10 месяцев назад
Комментарии
@suarezpk
@suarezpk 7 дней назад
I followed all steps but when adding Streamlitresponse is not working the responses anymore, can you help?
@nikhil182
@nikhil182 Месяц назад
Can't believe you have only 525 subscribers! The content is really good.
@andfanilo
@andfanilo 15 дней назад
Thank you. I have a personal channel with similar content if you want to check it out :)
@matthiasyotiix2439
@matthiasyotiix2439 2 месяца назад
Incredible video I can make it works in a few minutes ! Your explainations are super clear ! I just have a question about the deployment on github and streamlit. When I push this code in github it seems to have an error about cache or log... Did you try to deploy it ?
@vinaya68vinno1
@vinaya68vinno1 2 месяца назад
Images not loading in pickle format can you explain this video brief
@yrahaman7199
@yrahaman7199 2 месяца назад
Love the video ❤. Could you please do it using langchain once
@osamayaqoob411
@osamayaqoob411 3 месяца назад
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 ?
@WhySoBroke
@WhySoBroke 3 месяца назад
Very cool!! Any updates or new discoveries of chat with data methodologies??
@PauloRoberto-vj4jb
@PauloRoberto-vj4jb 3 месяца назад
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 3 месяца назад
we can make use of gemini from Google
@natawebmaster
@natawebmaster 3 месяца назад
Thanks for video. Tomorrow will try.
@__brah
@__brah 4 месяца назад
😀
@GeriFitrah
@GeriFitrah 4 месяца назад
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 ?
@HighTechGeeks
@HighTechGeeks 4 месяца назад
if i have my own csv data how do i convert to pkl
@andfanilo
@andfanilo 4 месяца назад
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
@akshitsinghal8590
@akshitsinghal8590 4 месяца назад
I really like this project will work on this coming weekend.
@andfanilo
@andfanilo 4 месяца назад
Awesome, good luck 🙂
@KALYAN1898
@KALYAN1898 4 месяца назад
Could u show, if the data is inside Postgres database ? Please
@andfanilo
@andfanilo 4 месяца назад
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
@mattiaselisson55
@mattiaselisson55 5 месяцев назад
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 4 месяца назад
No
@sebacisterna
@sebacisterna 4 месяца назад
Yes. But if your account is new, or you haven't used the API key before, you will spend your free credits first
@gopikrishna8850
@gopikrishna8850 5 месяцев назад
ModuleNotFoundError: No module named 'pandasai.callbacks' How to resolve this issue
@andfanilo
@andfanilo 4 месяца назад
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 2 месяца назад
yes! with pip install pandasai==1.4.10 you'll fix the problem automatically
@bangyor5949
@bangyor5949 13 дней назад
@@andfanilo Is there any workaround instead of downgrading the version?
@Bora4100
@Bora4100 5 месяцев назад
I bought a book about developing apps with gpts with her name on the cover. Came to RU-vid to check it up, ended up clicking on this video, stayed for the whole thing. Seems to be so talented yet young. Amazing both in English and French.
@TechAtWorldline
@TechAtWorldline 4 месяца назад
Thank you for your valuable feedback! A youtube short has just been released, shedding light on Marie Alice and Olivier's AI book. Check it out!
@stephenpire3803
@stephenpire3803 7 месяцев назад
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 7 месяцев назад
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!
@mikew2883
@mikew2883 7 месяцев назад
Awesome! 👍
@andfanilo
@andfanilo 7 месяцев назад
Thanks for the feedback :)
@nunomaltez804
@nunomaltez804 7 месяцев назад
thnk you, summary of what i needed.
@andfanilo
@andfanilo 7 месяцев назад
Glad to hear it was useful 🙂