Looking forward to see how you create assistants. Really appreciate the tutorials! Thank you!
@psylentan15 ай бұрын
outstanding tutorial! you are the Best!
@sim0nall3n9 ай бұрын
Zubair, thankyou so much for this series of videos, it has helped me alot!!!! Cheers!!!
@niraggosalia11 ай бұрын
Hey can you please create the step by step on how you built the front end? this video just shows an already built front end and how it's processing on Bubble.
@niraggosalia11 ай бұрын
Also you skipped a lot of steps for beginners like me. I have no clue how you saved the thread id in data base... Could you please share a more detailed step by step view of how the front end can be created from scratch.
@brodyjohnston046 ай бұрын
boss retired from youtube ig
@jahanzeb.khn076 ай бұрын
Such a great tutorial!
@NPN087 ай бұрын
Can you post a video doing it step by step, I don't understand everything
@zubair_nocode6 ай бұрын
@@NPN08 here you go kzbin.info/www/bejne/mYiukoyqm5p1jMksi=o51Mc2TvixZx-Ui0
@ki001 Жыл бұрын
Nice tutorial, thank you. When is part three coming? Interested to see the file upload and creating assistants in part three, I think would be awesome!
@NPN087 ай бұрын
Can you do a step by step tutorial how this all works?
@zubair_nocode3 ай бұрын
I have. Check the new video
@Coolio0988 ай бұрын
Hello Zubair! Great tutorial thank you for sharing. I managed to get the API setup and I can send and return values. One bit of trouble I'm having is the data showing up immediately in the repeating group. When I type a new question and click Send, the repeating group refreshes and I can see the response to the previous question. Now the new question sits there with no response until I type a new question and click Send and so on. Anything you can think of that I'm doing incorrectly?
@DonnieBalliet Жыл бұрын
Very helpful! Thank you. In the case where I want to call an Assistant but dont care about threading, is it possible to do that without creating a thread? Basically send a prompt to the custom Assistant and display the response but no need to remember the thread.
@zubair_nocode11 ай бұрын
why not use the chat endpoint for that?
@alexisvallee3152 Жыл бұрын
It’s so complicated, you could make it a bit easier :( like no idea what to put in the repeating group
@zubair_nocode11 ай бұрын
I'll try to be more elaborate next time.
@zubair_nocode6 ай бұрын
@@alexisvallee3152 check this kzbin.info/www/bejne/mYiukoyqm5p1jMksi=o51Mc2TvixZx-Ui0
@TheWiseMan10 ай бұрын
Hi Zubair! I'm wondering how many Workload Units something like this consumes. If someone is asking 50 questions per day, how many WUs would that consume? Just wondering if it's even worth building/scaling this on Bubble considering the WU costs. Again, thanks a ton for the videos!! Extremely helpful!
@zubair_nocode10 ай бұрын
Once open AI supports streaming for this API, it won't be an issue. No idea about WU usage ATM. It usually isn't a big deal. Unless it's for some free b2c app
@TheWiseMan10 ай бұрын
@@zubair_nocode Thank you so much sir! 🙏 … I’m wondering how many WUs your examples consumed. You had a Replicate API example and the Open AI Assistant example. Any way you can tell me how many WUs one request consumed? Forever grateful 🫶
@BlundersandBreakthroughs7 ай бұрын
Zubair, thank you so much for this series! It has been super helpful. One quick question, I don't get the option to "Run my thread" in my plugins. I only get "Create a thread as an option". Because of this, I am unable to get a response from chat gpt. How can I fix this?
@christhesix6018 Жыл бұрын
Your videos are fantastic and super knowledgeable. is a tutorial on integrating file uploads coming anytime soon?
@zubair_nocode Жыл бұрын
On my list :)
@malekaimischke2444 Жыл бұрын
thanks for this video!
@kashishvarshney2225 Жыл бұрын
very informative video but it can be more explainatory
@zubair_nocode6 ай бұрын
@@kashishvarshney2225 check this one kzbin.info/www/bejne/mYiukoyqm5p1jMksi=o51Mc2TvixZx-Ui0
@the-leap.11 ай бұрын
Hey awesome video. I'm struggling with the RG. What type of content should the RG be?
@mcr16992 Жыл бұрын
When did you set up the Open AI - Get Messages Action Call? Struggling to find that in the first video's plugin setup.
@zubair_nocode Жыл бұрын
The action is to refresh the thread/get messages in a workflow and poll every second
@michalstoklasa7866 Жыл бұрын
great video, thank you! How you make reversed repeating group and why scroll to entry?
@zubair_nocode Жыл бұрын
Added a sort in the openAI API call to make the repeating group reversed. And without scrolling the chat message is there but not visible
@mikelaramendia Жыл бұрын
Great video but fast explanation for begginers like me! I get the list of messages but how do you show them in reverse order, i mean, newest down of the repeating group?
@zubair_nocode Жыл бұрын
In the API, there is a parameter to sort the response
@mikelaramendia Жыл бұрын
@@zubair_nocode thank you so much! Helpful, im learning how APIs work
@mikelaramendia Жыл бұрын
@@zubair_nocode ive found something maybe you can explain... What you do here is retrieve the whole list of messages every time. Ive read on OpenAI Forum that this makes exponentially more expensive the use of the API. Is it true? Have you thought about it? Could be a way to use the repeating group but only retrieveng the last message of the thread? Also ive read that by default the retrieving of list of messages is limited to 20 messages (you can change it to a maximum of 100)
@khalidkifayat Жыл бұрын
Hi Zubair !! how much we should charge client with same chatbot (excluding other expenses) ???
@martin-paczona9 ай бұрын
Great video, Can the assistants api handle file upload?
@zubair_nocode9 ай бұрын
Yes it can. On my list to create a video about it
@eliskucevic3409 ай бұрын
Can you provide a sample of the template you were using?
@Tahycoon Жыл бұрын
How to determine if the message was created by the user or the ai? I am trying to display my own bot image. Also, is there a way where if the user already has a thread and the page gets refreshed that data just displays in the repeating group instead of disappearing and starting a new thread?
@zubair_nocode Жыл бұрын
In the api response, the role specifies if the message was by user or assistant need to save the thread ID in the bubble database. A table with Thread ID, Related User This should do it