Google Vertex AI Agent Builder Tutorial

  Рет қаралды 21,027

Architecture Bytes

Architecture Bytes

Күн бұрын

Пікірлер: 54
@MichaelHoward-yv2py
@MichaelHoward-yv2py 9 күн бұрын
One of the best tutorials I have watched. Thorough yet easy to follow. You are clearly gifted in teaching.
@Mr.Cool.Dragonpresent
@Mr.Cool.Dragonpresent 5 ай бұрын
Simple and clear, no extra crap. Straight to business.
@pimcore_warrior
@pimcore_warrior 8 ай бұрын
quality guide, greetings from 71
@superfilipe26
@superfilipe26 3 ай бұрын
Hi, great video! I'm wondering if it's possible to automate the creation of this agent using infrastructure as code tools like Terraform. Are there specific modules or providers that you'd recommend for this task?
@BiotechMat
@BiotechMat 3 ай бұрын
Thanks for sharing!
@babusivaprakasam9846
@babusivaprakasam9846 8 ай бұрын
Fantastic!. Straight to the point.
@ravendfj
@ravendfj 11 күн бұрын
Hi, I tried to run the agent using authorized API at minute 13:317 but it asks "Access Request" because I did not provide token. How does it work for you please? Thanks.
@ZerayacobMeshesha
@ZerayacobMeshesha Ай бұрын
Hi everyone, im having an issue with creating the agent, after I select the display name and region, google continues to try to create it but never succesfully does so. Im wondering if anyone dealt with the same issue and has any fixes.
@santosharakere
@santosharakere 8 ай бұрын
Excellent ! Thanks for the video.
@YunometaDeveloper
@YunometaDeveloper 2 ай бұрын
but product quantity is not coming when i am testing it
@pythonlover20
@pythonlover20 4 ай бұрын
Thanks for the great video. Noticed you selected "Allow unauthenticated invocations" for the cloud function. How do I use the cloud function in a tool when "Require authentication" is enabled ? I have tried adding cloud function invoke permissions to the dilaogflow cx service account but it's still getting 401 error.
@ArchitectureBytes
@ArchitectureBytes 4 ай бұрын
You will need 'Cloud Run Invoker' role. Please see the readme in github repo, have added a section on how to set this up.
@pythonlover20
@pythonlover20 4 ай бұрын
@@ArchitectureBytes Thanks
@sagar00000007
@sagar00000007 4 ай бұрын
Great video. I think in my workflow everything works. However, I need fallback to Gemini LLM after trying answer from my data store. No matter what I have tried like creating separate agent, calling it inside the workflow, the first call to tool just exists saying no answer found instead of trying to fallback. Do you have any recommendation?
@ArchitectureBytes
@ArchitectureBytes 4 ай бұрын
In your (main) agent instructions add something like (maybe at the end) - If the user asks any other question try answering it, instead of saying you don't know.
@MrAlex0803
@MrAlex0803 5 ай бұрын
Could I make it call a external not google service like jira to make an api post to create a ticket?
@ArchitectureBytes
@ArchitectureBytes 5 ай бұрын
Yes certainly, you can invoke a Google Cloud Function - and from there make call to an external service like JIRA etc.
@yesweet
@yesweet 6 ай бұрын
thanks for this excellent video example, very helpful👍. Could you please show us how to call that agent via an API? I need to call it from our own message platform, but fail to handle the auth, that permission and service account configuration are confusing and no doc about this use call.
@ArchitectureBytes
@ArchitectureBytes 6 ай бұрын
Please see the Readme file in the Github repository (link in video description). Have added a section: Invoke Agent via API call. Hope that helps!
@yesweet
@yesweet 6 ай бұрын
@@ArchitectureBytes Thanks! I post an issue in that repo following the error message I got.
@shubhamGarg02
@shubhamGarg02 5 ай бұрын
can i upload data in csv or tablular format to my data store?
@ArchitectureBytes
@ArchitectureBytes 5 ай бұрын
A csv format with proper headings should work. HTML is also one of the accepted formats.
@johnleryvillanueva766
@johnleryvillanueva766 5 ай бұрын
i got error when i put an schema same as you do Draft 2020-12 schemas are not yet fully supported.
@ArchitectureBytes
@ArchitectureBytes 5 ай бұрын
You mean when you add Open API Schema like at 6:10 ? Are you using the same schema as used in the demo or one of your own? If it is your own does it have a version at the top - and what is it?
@johnleryvillanueva766
@johnleryvillanueva766 5 ай бұрын
@@ArchitectureBytes yah same schema that you used. i just copy from your source code then paste it.
@ArchitectureBytes
@ArchitectureBytes 4 ай бұрын
@@johnleryvillanueva766 Please use the yaml version of the OpenAPISchema. This file is available in repo now. Hope that helps.
@MohammadMajed-hu4ms
@MohammadMajed-hu4ms 8 ай бұрын
Great guide! Is it possible to send hidden params not inputted by the user and the agent will understand? Dialogflow used to support $session.param... when we set it from df-messenger.setQueryParameters Now when starting with VertexAI Agent and using the df-messenger integration, I am not sure how to do that
@ArchitectureBytes
@ArchitectureBytes 7 ай бұрын
You would add that information to Agent instructions. When invoking a Tool (eg. OpenAPI) - agent passes parameters based on available information whether provided explicitly by the end user or available in the instructions. Your Open API Schema definition (eg. param name, description) should be well defined. Your instruction could be something like: Always assume that City name is Chicago. So, if your Tool (API) expects City as parameter, it would get Chicago as parameter, and agent will not need to ask for this information from the end user.
@MohammadMajed-hu4ms
@MohammadMajed-hu4ms 7 ай бұрын
@@ArchitectureBytes Thank you for the reply! Will this work if the parameter is not a predefined one? Let's say my system where the chatbot is deployed on decides the City Name and I would like to send that as a parameter. How can my instructions be something like "Get the City name from the System" and how can i send it? My user interface is using integration
@ArchitectureBytes
@ArchitectureBytes 7 ай бұрын
You can instruct the Agent to fetch City name by invoking a Tool (API). Please watch the video completely - it shows how Agents are instructed to invoke Tools. I also suggest that you watch this video (AI Agent Architecture) to understand how Agents work: kzbin.info/www/bejne/fHa4Z2B_oZ2doNk
@shashwatsri4547
@shashwatsri4547 6 ай бұрын
Hey do you know if the agent app type is able to be integrated with telephony service? If not direct integration through google is there any other way I could do it?
@ArchitectureBytes
@ArchitectureBytes 6 ай бұрын
Yes sure! Pls see this video: kzbin.info/www/bejne/h6LUiJ94ncqSiNE
@nkarthik44
@nkarthik44 8 ай бұрын
Is is possible to get the inputs like phonenumber , casenumber etc from customer and pass it to function in Google Vertex AI?
@ArchitectureBytes
@ArchitectureBytes 8 ай бұрын
Yes, in the tutorial we are passing productId to the function - the OpenAPI schema defines this interface.
@NMISDEEPAKPOOJARY
@NMISDEEPAKPOOJARY 8 ай бұрын
can we train the model with 2 data stores , cause I tried and its not working
@ArchitectureBytes
@ArchitectureBytes 8 ай бұрын
Yes, it works. You could create separate Tools of type Data Store - for each Data Store, and have your Agent Instructions point to them. Make sure Data Store is connected to the Application. Remember that upon creating a new Data Store - it takes some time to import/index the data. So, agent can use it only after that.
@Inside25
@Inside25 6 ай бұрын
Hi, thank you for this valuable video. I am having trouble finding help., Dilaogflow Messanger when Try 13.48 says "Somthing went wrong" not work
@ArchitectureBytes
@ArchitectureBytes 6 ай бұрын
Your question is not clear to me. Do you get an error when you start chatting with the bot Or at some other point?
@ManikantaKomma
@ManikantaKomma 7 ай бұрын
i am getting hallucinations results in chatbot in agent app, how will fix it, please let me know
@ArchitectureBytes
@ArchitectureBytes 7 ай бұрын
Please make sure that your Agent Instructions are clear and accurate. In addition you can provide Examples 11:28. The above two are the most important measures to take. You can also play with Temperature settings under Settings > Gen AI > Temperature. A lower temperature settings reduces randomness of tokens selection (therefore response).
@ManikantaKomma
@ManikantaKomma 7 ай бұрын
​@@ArchitectureBytes i get JSON schema, have i modify in this schema & how i get url for this schema, like at 6:07, and at 7:15 how will get python code (flask import) & i am working on multiple tools on the same agent, is it will be work?
@ArchitectureBytes
@ArchitectureBytes 7 ай бұрын
@@ManikantaKomma In the Open API Schema The 'url' is url of your Google Cloud Function (without function name at the end). Path has the Cloud function name. OperationId is the method name in function. If 'flask' dependency is not automatically handled, then in the requirements.txt file present alongside the CloudFunction python file - add a line 'flask'. Of course you can use multiple tools in an agent - this is shown in this tutorial itself.
@ManikantaKomma
@ManikantaKomma 7 ай бұрын
@@ArchitectureBytes i given multiple examples but and getting hallucinations results and getting Failed to generate response, Temperature option not visible in Gen AI
@ArchitectureBytes
@ArchitectureBytes 7 ай бұрын
@@ManikantaKomma What's there in your Data Store? Is it 'Cloud Storage' with unstructured documents (pdf?) from a bucket? By hallucination - do you mean it gives you incorrect information? Or it says it doesn't have the information (which is not exactly hallucination)?
@LigisStories
@LigisStories 8 ай бұрын
can i upload data in pdf format to my data store?
@ArchitectureBytes
@ArchitectureBytes 8 ай бұрын
Yes! This tutorial demonstrates that.
@LigisStories
@LigisStories 8 ай бұрын
@@ArchitectureBytes Thank you so much.
@StefanoGraziotin
@StefanoGraziotin 8 ай бұрын
I followed all the steps you showed in the video step by step. it gives me an error when I ask for the quantity ( " 404 Page not found Error: Page not found The requested URL was not found on this server. "Incorrect type. Expected "object" ) and when I try to integrate dialogflow. could you help me?
@ArchitectureBytes
@ArchitectureBytes 8 ай бұрын
Please see the Readme in github repository linked in video description. Did you update the OpenAPI Schema with your own cloud function URL, name and operationId as suggested?
@StefanoGraziotin
@StefanoGraziotin 8 ай бұрын
@@ArchitectureBytes I fixed the problem with the getProductQuantity, but i can't integrate dialogflow. can you help me with this?
@ArchitectureBytes
@ArchitectureBytes 8 ай бұрын
You mean integrate with the Dialogflow Messenger? What problem are you facing?
@עמנואלחסן-ח3ס
@עמנואלחסן-ח3ס 2 ай бұрын
hi. i have error Error 400: redirect_uri_mismatch after i follow your video. please help as soon you can. thank you
@ArchitectureBytes
@ArchitectureBytes 2 ай бұрын
At what point (video timestamp) do you get this error?
@MariuszKen
@MariuszKen 8 ай бұрын
I love this accent.
Amazon Bedrock Agents Tutorial - Architecture and Orchestration
20:47
Architecture Bytes
Рет қаралды 16 М.
What is a Generative AI Agent?
32:40
Google Cloud Events
Рет қаралды 14 М.
The Lost World: Living Room Edition
0:46
Daniel LaBelle
Рет қаралды 27 МЛН
Вопрос Ребром - Джиган
43:52
Gazgolder
Рет қаралды 3,8 МЛН
#behindthescenes @CrissaJackson
0:11
Happy Kelli
Рет қаралды 27 МЛН
Grounding for Gemini with Vertex AI Search and DIY RAG
35:31
Google Cloud Tech
Рет қаралды 24 М.
Google Cloud Agent Builder - Full Walkthrough (Tutorial)
18:59
Victor Dantas
Рет қаралды 22 М.
Building and Deploying AI Agents with LangChain on Vertex AI
1:17:43
Google Cloud Events
Рет қаралды 7 М.
All about AI Agent building with Eliza - With 0xfabs
1:26:07
Mode Network
Рет қаралды 4 М.
Intro to AI Agents and how to build them
56:27
Nerdery
Рет қаралды 8 М.
Introduction to Vertex AI Studio
27:51
Google Cloud
Рет қаралды 50 М.
Google Releases AI AGENT BUILDER! 🤖 Worth The Wait?
34:21
Matthew Berman
Рет қаралды 244 М.
Build generative AI agents with Vertex AI Agent Builder and Flutter
40:04
Google Cloud Tech
Рет қаралды 24 М.
The Lost World: Living Room Edition
0:46
Daniel LaBelle
Рет қаралды 27 МЛН