Create a Custom AI Assistant + API in 10 Mins

  Рет қаралды 107,929

pixegami

pixegami

Күн бұрын

Пікірлер: 113
@RatherBeCancelledThanHandled
@RatherBeCancelledThanHandled 9 ай бұрын
Love your videos. Thanks for sharing 👍
@pixegami
@pixegami 9 ай бұрын
Thank you, glad you enjoyed it!
@mahendrachourasiya
@mahendrachourasiya 13 күн бұрын
Can I built this assistant(bot) in my free openai account? or I need some paid account? @anyone please answer!!
@edwardwong654
@edwardwong654 8 ай бұрын
Dude you are much better looking than Sam. Use your own pic and be proud :-)
@pixegami
@pixegami 7 ай бұрын
I'm flattered. Thank you!
@almuntasaralhabsi2557
@almuntasaralhabsi2557 11 күн бұрын
This is why Ai can never replace humans.
@antoniobradley6259
@antoniobradley6259 3 ай бұрын
This is exactly what I needed. I was struggling with extracting the message from the message object group. This short 10 min video just solved a problem I was working on for 4 hours.
@pixegami
@pixegami 3 ай бұрын
That makes me really happy to hear, glad you solved your problem!
@shukrantpatil
@shukrantpatil 7 ай бұрын
But the GPT's in the gpt store are capable of accessing external API's, why aren't the assistant capable of doing so ? Do you know any alternate models which allow for external API access ?
@pixegami
@pixegami 7 ай бұрын
I'm not sure why they allowed the GPT store to do that (do they really!?), but not custom assistants. But I guess that's something OpenAI expects you to handle in your own server side logic.
@Its_Alan_Paul
@Its_Alan_Paul 3 ай бұрын
It is what it is.
@edwardwong654
@edwardwong654 7 ай бұрын
ImportError: cannot import name 'OpenAI' from 'openai' This is a library compatibility problem. Any fix? ChatGPT has me running in circles literally with the same 2 set of fixes. Thanks. Still a good video!
@edwardwong654
@edwardwong654 7 ай бұрын
The problem was cause by VS Code IDE. When I created a new venv, ran the main.py as a script, it was fine. So I need to either new a new IDE, or find the config issue in my VSC. Thanks.
@pixegami
@pixegami 7 ай бұрын
It's probably that you need to select the Python environment to use. By default, I think VSCode might not know which Python environment you need to use. Don't worry, it's quite a common snag that I get caught on a lot as well. Here's how to fix it: code.visualstudio.com/docs/python/environments
@superfliping
@superfliping 4 ай бұрын
Would you like to be a Judge? 1. CodeCraft Duel: Super Agent Showdown 2. Pixel Pioneers: Super Agent AI Clash 3. Digital Duel: LLM Super Agents Battle 4. Byte Battle Royale: Dueling LLM Agents 5. AI Code Clash: Super Agent Showdown 6. CodeCraft Combat: Super Agent Edition 7. Digital Duel: Super Agent AI Battle 8. Pixel Pioneers: LLM Super Agent Showdown 9. Byte Battle Royale: Super Agent AI Combat 10. AI Code Clash: Dueling Super Agents Edition
@matlarasta
@matlarasta 5 ай бұрын
but assistant api still not have history right ?
@pixegami
@pixegami 5 ай бұрын
I think with "threads" you can have history for that thread. You'll just have to store the thread ID to retrieve it?
@aidanlimon2756
@aidanlimon2756 4 ай бұрын
Does the ai assistant have the ability to retain memory?
@jeffb6305
@jeffb6305 8 ай бұрын
Great video! What steps would need to be included to allow the Assistant to use data from a 3rd party API? I’m not a coder and hope there is a way to connect to an external API from the Playground using Functions tool?
@pixegami
@pixegami 8 ай бұрын
That's probably a bit more complex, I think currently you do need a bit of coding to get that working. So the OpenAI assistant will just give you the raw data to send to the 3rd party API. You'll have to write (or generate) some code to use that input and make the call yourself, then you can decide what to do with the response (e.g. feed it back to the assistant, or do something else with it).
@BFlago
@BFlago 3 ай бұрын
Hi, thank you very much for the video, very helpful. I am getting this error ” 2024-06-12 11:53:56,194 - openai - INFO - error_code=None error_message=‘Unrecognized request argument supplied: assistant_id’ error_param=None error_type=invalid_request_error message=‘OpenAI API error received’ stream_error=False 2024-06-12 11:53:56,194 - __main__ - ERROR - Error calling OpenAI API: Unrecognized request argument supplied: assistant_id" What should I do, GPT doesn't give a correct answer to this
@brianhopson2072
@brianhopson2072 4 ай бұрын
I see how much I have been over complicating this. Thanks.!
@pixegami
@pixegami 4 ай бұрын
Glad it helped!
@hamed36978
@hamed36978 Ай бұрын
HI my friend .It's really good and useful .❤❤ I just have a question . Is it possible to suddenly run out of tokens? if is it true how can i solve this ?
@hanankhader3410
@hanankhader3410 6 ай бұрын
thanks a lot it's really helpful, can you make part 2 for build a custom UI using streamlit with AI Assistant
@FactosFax
@FactosFax 4 күн бұрын
how would you get the output to come out of chatbot ui on the frontend instead of output coming out of the terminal
@jkbullitt8986
@jkbullitt8986 9 ай бұрын
Excellent Bro!!! Clear and concise👍
@pixegami
@pixegami 9 ай бұрын
Thank you :) Hope you enjoyed it.
@bobbastian760
@bobbastian760 6 ай бұрын
The way they constructed this API, with runs and threads and messages - it's hilariously unintuitive and bad. Almost as bad as a Google API - I mean not that bad but still. It's like they purposely decided to make it incomprehensible.
@pixegami
@pixegami 6 ай бұрын
I agree it was incredibly unintuitive to use. But designing APIs like this will always have a lot of trade-offs, and I think the designers here were really positioning it for high-scaling, async-first use cases.
@chrisder1814
@chrisder1814 Ай бұрын
hello can I create a small database with KZbin URLs to obtain much better tutorials
@fintech1378
@fintech1378 6 ай бұрын
sorry im new to OAI assistant API..i have already had 'credentials' from my custom GPT in GPT store. how can i connect it to my separate app with assistant API? not recreating the instruction on assistant API but just connect it to custom GPT in GPT store that i have already created earlier
@pixegami
@pixegami 6 ай бұрын
I think the Custom GPT and the Assistant APIs are slightly different products in OpenAI's backend, so you'll probably have to re-implement your Custom GPT as an Assistant first, then use that as an API in your app.
@chanel454879876354
@chanel454879876354 6 ай бұрын
As far as I understand, it is impossible to call external API directly from the chat GPT agent. It is only possible to call an assistant from the Python code locally on a PC.
@pixegami
@pixegami 6 ай бұрын
Yup, that's my understanding as well.
@omaryamani5799
@omaryamani5799 6 ай бұрын
great video,i ve been struggling with the API connexion with my assistant,do you have an equivalent code for R?
@pixegami
@pixegami 5 ай бұрын
Ah, sorry I don't have a ton of experience with R. :(
@vrlchebolu
@vrlchebolu 7 ай бұрын
Great video. I'm still new. How is this different from asking chat GPT to summarize a document for me?
@pixegami
@pixegami 7 ай бұрын
It lets you configure the GPT with a bit more context upfront, so if you wanted to build an app or a UI on top of this for other people to use, this gives you a head start.
@lukekoletsios3236
@lukekoletsios3236 7 ай бұрын
Thanks for the video man. This helped me understand how I can transfer my custom-built OpenAI chatbot to my website/SaaS. Basically it's an interrelationship with VSCode and OpenAI and then once I'm happy I just use the API and chabot ID and somehow plug it into my website on the backend. At least that's what I think. We'll see.
@pixegami
@pixegami 7 ай бұрын
Glad to hear it helped you get going. There's a lot of different ways to build what you want, so the best thing is just to go ahead and try it out like you are doing. Good luck!
@IdPreferNot1
@IdPreferNot1 8 ай бұрын
Any suggestions on fast cheats for creating these JSON or Yaml schemas? Something in VS code, feeding question into GPT? Havent been able to get them to automatedly generate these template styles
@pixegami
@pixegami 7 ай бұрын
Hmm, for something like this, I think since it's usually a "one-off" cost to developing an assistant, it's probably best to do the schemas by hand so you can validate them and make sure they are to your spec. You'll always get variable results with LLMs to help on schemas like this that are not widely used or documented in its training data.
@samiles171094
@samiles171094 2 ай бұрын
This is how the custom GPTs work under the hood.
@AlfieMarsh
@AlfieMarsh 5 ай бұрын
Hey - what do you use to edit the gradient circle around your camera?
@pixegami
@pixegami 5 ай бұрын
I just prepare the graphic in photoshop (it's just a gradient circle), then use OBS to record. I put a circular mask around my camera image, and just stick that on top of the circle.
@thebreak247
@thebreak247 8 ай бұрын
Awesome thank you! @pixegami Do you know how to print screen what tool the assistant is using while answering your query? Assuming there are multiple tools available to the assistant. Thanks.
@pixegami
@pixegami 8 ай бұрын
Hmm, I think maybe if you enable the verbose setting in the assistant, you might be able to get more details out of it? Not quite sure, but I think it'll probably be somewhere in the OpenAI docs. I'd be shocked if they didn't expose that feature :P
@atitbimali9224
@atitbimali9224 9 ай бұрын
Unfortunately it's not free, it reponds with quota exceeded.
@pixegami
@pixegami 9 ай бұрын
Yup, I think it might require an OpenAI account. Have you tried changing it to a different (older) model?
@appcrazee
@appcrazee 6 ай бұрын
Can you force it only to look into your data for its responses? Very nice video. Thank you.
@pixegami
@pixegami 6 ай бұрын
I'm not sure how possible that is from the Assistant tooling itself. But (either using this or using the something like Langchain and RAG directly) you could also implement your own validation that the data it uses must closely relate to the material you've given it.
@chimoji608
@chimoji608 3 ай бұрын
I feel tupid because i stil don't understand the function calling and adding API and such 😅 I mean I'm not a programmer... that doesn't help :P
@chimoji608
@chimoji608 3 ай бұрын
so.. can you add an external API to the schema? And when you finish the assistant.. how do you then use the API for that assistant somewhere else? im going to watch those parts again haha
@alzajr5741
@alzajr5741 Ай бұрын
Thanks your video make me understand. I have One account platform and have 1 assitand have done too make all rule with file . But i still confused about “how to assistant that calling with Api to WHATSAUTO/Bot Auto AI needed api Openai?” Yeay i have watching your video, with phyton make thread and response all question, but where is api for Assistand can i input on WHATSAUTOAI
@KumR
@KumR 8 ай бұрын
so this is basically doing a task which langchain or llamaindex is doing?
@pixegami
@pixegami 7 ай бұрын
Sort of. The UI/UX is a little easier and more managed. But you can definitely also implement something like this yourself with Langchain.
@edoardobonechi4259
@edoardobonechi4259 27 күн бұрын
Great Tutorial! BUT I'm trying to use the OpenAI API in Python to create an assistant that retrieves information from attached documents, similar to how it works in the OpenAI Playground. Although I've used the assistant ID configured with the documents, the Python script doesn't return responses based on those documents. How can I ensure my Python script correctly accesses the documents linked to the assistant?
@Aaron7k
@Aaron7k 8 ай бұрын
CAn I ajust Tokens and temperature?
@pixegami
@pixegami 7 ай бұрын
Hmm, I don't think the Assistants API allows you to do that. If you want a finer level of control, it might be best to implement your own agent using the model directly and something like Langchain library for utility.
@thijz0
@thijz0 8 ай бұрын
im unable to save documents for reference.. any idea?
@pixegami
@pixegami 7 ай бұрын
Hmm, did you check if the file format of the doc (e.g. PDF, text, etc) and the file size is supported by OpenAI?
@tobiodeyemi9716
@tobiodeyemi9716 Ай бұрын
Can the custom knowledge source be a Python package like Openbb for financial data?
@ugurcancamm
@ugurcancamm 7 ай бұрын
Is there any way to personalize assistant on mobile app?
@pixegami
@pixegami 7 ай бұрын
I guess you can write a mobile app as a frontend to interact with your own AI assistant API?
@willyu7515
@willyu7515 7 ай бұрын
May I ask wht I only have GOT3.5 turbo, no Gpt 4. I also paid.
@pixegami
@pixegami 7 ай бұрын
Hmm, do you have the premium membership subscription? That's all I have and it shows up for me. I don't know if there's any geographical restrictions... (I'm in Australia).
@TheEagle-re9dp
@TheEagle-re9dp 6 ай бұрын
Hey @willyu7515, all you need to do is add some credits to your account (minimum $5). It's terrible that they don't mention it, but I had the same problem, and as soon as I added some money, the GPT 4 popped up. Hope it helps!
@nirubansatchithanandakumar3266
@nirubansatchithanandakumar3266 4 ай бұрын
so concise and clear! thank you!
@pixegami
@pixegami 4 ай бұрын
Glad to hear it was useful!
@AkulSamartha
@AkulSamartha 7 ай бұрын
Such a simple and easy eplaination. I wish you were my college professor.
@pixegami
@pixegami 7 ай бұрын
Thank you :)
@מדינט
@מדינט 3 ай бұрын
That was very helpful, Thanks a lot.
@pixegami
@pixegami 3 ай бұрын
Glad it was helpful!
@Ronghai
@Ronghai 22 күн бұрын
It is not free. :(
@bribro289
@bribro289 2 ай бұрын
Verry cool but do you know the limit to pdf’s you can upload. The limit seems s bit low unfortinately. I just tried creating a Plug in but this is the same right?
@sai_ai-z1c
@sai_ai-z1c Ай бұрын
AI agents and tools are revolutionary! I've been enjoying how SmythOS makes creating multi-agent systems devoid of code so simple. creates a plethora of opportunities for automation #SmythOS #AItools
@animel8ve
@animel8ve Ай бұрын
Thank you for the great video pixemi! I want to build my own data analyst assistant that would do excel work, data visualization... based on your experience, do you think I should use 3 assistants that each is specialized for a certain task or one general assistants?
@nathanielvolk515
@nathanielvolk515 9 ай бұрын
Another awesome video! Thanks!
@pixegami
@pixegami 9 ай бұрын
Glad you enjoyed it! Thank you :)
@bobbastian760
@bobbastian760 6 ай бұрын
*most livable *most boring :D
@pixegami
@pixegami 6 ай бұрын
Well... 🤷‍♂️
@feliperivadeneira6488
@feliperivadeneira6488 8 ай бұрын
doesn't it works with excel files?
@pixegami
@pixegami 8 ай бұрын
I'm not sure, I think it does? But if not, you can probably export the Excel file into a CSV (which I'm pretty sure it should work with).
@techieturnedequipmenttrader
@techieturnedequipmenttrader 3 ай бұрын
Why cant i see model 4 and beyond just as yours in the video? I Just see 3.5 and its variations!
@수능시대
@수능시대 4 ай бұрын
There is no Retrieval in the tools on my screen. Can you guess what the problem is?
@nerdimmunity7672
@nerdimmunity7672 Ай бұрын
Define "easy"
@5ice1971
@5ice1971 2 ай бұрын
retrieval is not showing on my screen...what do I need to do?
@sergeipetrochemie9894
@sergeipetrochemie9894 7 ай бұрын
Very good video. Thank you 👌
@pixegami
@pixegami 7 ай бұрын
Glad you liked it!
@federicosrossi
@federicosrossi 5 ай бұрын
great work man! thanks for sharing
@pixegami
@pixegami 5 ай бұрын
You're welcome! Glad you liked it!
@renealbrechtsen9743
@renealbrechtsen9743 9 ай бұрын
Can you do a django tutorial ?
@pixegami
@pixegami 9 ай бұрын
Thanks :) Django is requested quite a lot so I've scheduled in to work on a tutorial in the next 3 months or so :)
@sss28765431
@sss28765431 7 ай бұрын
Great video. I will try it a little bit.
@pixegami
@pixegami 7 ай бұрын
Thank you. Good luck!
@bryanace147
@bryanace147 4 ай бұрын
2:10
@be_present_now
@be_present_now 8 ай бұрын
Good tutorial! Thanks! 👍
@pixegami
@pixegami 7 ай бұрын
Thanks!
@gctsquaternion6510
@gctsquaternion6510 8 ай бұрын
Nice video!!!!!
@pixegami
@pixegami 7 ай бұрын
Thank you!
@P051D0N
@P051D0N 5 ай бұрын
Wow you are amazing. Everything is well explained and completed. I am so impressed.
@pixegami
@pixegami 5 ай бұрын
Thank you so much! I really appreciate the feedback :)
@sehse100
@sehse100 3 ай бұрын
Perfect
@pixegami
@pixegami 3 ай бұрын
Thank you!
@oommggdude
@oommggdude 8 ай бұрын
To the point, good quality. Subscribed.
@pixegami
@pixegami 7 ай бұрын
Thank you!
@dmbrv
@dmbrv 9 ай бұрын
great video
@pixegami
@pixegami 9 ай бұрын
Thank you :)
@Zinab8850
@Zinab8850 7 ай бұрын
Thank you for this great tutorial🤍 why it doesn't show me chatGPT4 and only chatGPT3.5? and can i upload images to the assistant?
@shukrantpatil
@shukrantpatil 7 ай бұрын
you need to get the premium subscription for chatgpt-4 and i think it does accept images
@pixegami
@pixegami 7 ай бұрын
Yup, it seems as someone else mentioned, you might need to have the OpenAI premium subscription to access GPT-4.
Build Anything with AI Agents, Here's How
29:49
David Ondrej
Рет қаралды 295 М.
OpenAI Assistants Tutorial for Beginners
27:03
Dave Ebbelaar
Рет қаралды 65 М.
Run your own AI (but private)
22:13
NetworkChuck
Рет қаралды 1,5 МЛН
GPT-o1: The Best Model I've Ever Tested 🍓 I Need New Tests!
10:58
Matthew Berman
Рет қаралды 251 М.
LangChain and Ollama: Build Your Personal Coding Assistant in 10 Minutes
20:43
AI Software Developer
Рет қаралды 1,4 М.
Run ALL Your AI Locally in Minutes (LLMs, RAG, and more)
20:19
Cole Medin
Рет қаралды 100 М.
These coding projects give you an unfair advantage
8:13
Jason Goodison
Рет қаралды 1 МЛН
How I Made AI Assistants Do My Work For Me: CrewAI
19:21
Maya Akim
Рет қаралды 836 М.
OpenAI Assistant API Tutorial With Code Examples
21:52
codewithbrandon
Рет қаралды 26 М.
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 274 М.
Python Langchain Tutorial: Use 3 Different LLMs in 10 Mins
11:35