Google Vertex AI Agent Builder Tutorial

  Рет қаралды 8,172

Architecture Bytes

Architecture Bytes

2 ай бұрын

Google Vertex AI Agent Builder Tutorial
In this demo, we learn to design and build Google AI Agents in Google Cloud Platform.
Introduction to Generative AI Agents.
Github Repo:
github.com/architecturebytes/...
#aiagents #vertexai #googlecloud #artificialintelligence #googlecloudplatform #generativeai

Пікірлер: 32
@babusivaprakasam9846
@babusivaprakasam9846 2 ай бұрын
Fantastic!. Straight to the point.
@santosharakere
@santosharakere 2 ай бұрын
Excellent ! Thanks for the video.
@pimcore_warrior
@pimcore_warrior 2 ай бұрын
quality guide, greetings from 71
@MariuszKen
@MariuszKen 2 ай бұрын
I love this accent.
@shashwatsri4547
@shashwatsri4547 13 күн бұрын
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 12 күн бұрын
Yes sure! Pls see this video: kzfaq.info/get/bejne/h9ehis9zzcvDgqM.html
@NMISDEEPAKPOOJARY
@NMISDEEPAKPOOJARY 2 ай бұрын
can we train the model with 2 data stores , cause I tried and its not working
@ArchitectureBytes
@ArchitectureBytes 2 ай бұрын
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.
@nkarthik44
@nkarthik44 2 ай бұрын
Is is possible to get the inputs like phonenumber , casenumber etc from customer and pass it to function in Google Vertex AI?
@ArchitectureBytes
@ArchitectureBytes 2 ай бұрын
Yes, in the tutorial we are passing productId to the function - the OpenAPI schema defines this interface.
@MohammadMajed-hu4ms
@MohammadMajed-hu4ms Ай бұрын
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 Ай бұрын
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 Ай бұрын
@@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 Ай бұрын
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: kzfaq.info/get/bejne/fKuFaZB60Z7Omqs.html
@yesweet
@yesweet 15 күн бұрын
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 13 күн бұрын
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 13 күн бұрын
@@ArchitectureBytes Thanks! I post an issue in that repo following the error message I got.
@Inside25
@Inside25 23 күн бұрын
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 22 күн бұрын
Your question is not clear to me. Do you get an error when you start chatting with the bot Or at some other point?
@StefanoGraziotin
@StefanoGraziotin 2 ай бұрын
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 2 ай бұрын
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 2 ай бұрын
@@ArchitectureBytes I fixed the problem with the getProductQuantity, but i can't integrate dialogflow. can you help me with this?
@ArchitectureBytes
@ArchitectureBytes 2 ай бұрын
You mean integrate with the Dialogflow Messenger? What problem are you facing?
@ruthyagatha
@ruthyagatha Ай бұрын
can i upload data in pdf format to my data store?
@ArchitectureBytes
@ArchitectureBytes Ай бұрын
Yes! This tutorial demonstrates that.
@ruthyagatha
@ruthyagatha Ай бұрын
@@ArchitectureBytes Thank you so much.
@ManikantaKomma
@ManikantaKomma Ай бұрын
i am getting hallucinations results in chatbot in agent app, how will fix it, please let me know
@ArchitectureBytes
@ArchitectureBytes Ай бұрын
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 Ай бұрын
​@@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 Ай бұрын
@@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 Ай бұрын
@@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 Ай бұрын
@@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)?
Amazon Bedrock Agents Tutorial - Architecture and Orchestration
20:47
Architecture Bytes
Рет қаралды 7 М.
Google Releases AI AGENT BUILDER! 🤖 Worth The Wait?
34:21
Matthew Berman
Рет қаралды 223 М.
Scary Teacher 3D Nick Troll Squid Game in Brush Teeth White or Black Challenge #shorts
00:47
I Can't Believe We Did This...
00:38
Stokes Twins
Рет қаралды 107 МЛН
Who has won ?? 😀 #shortvideo #lizzyisaeva
00:24
Lizzy Isaeva
Рет қаралды 62 МЛН
Жайдарман | Туған күн 2024 | Алматы
2:22:55
Jaidarman OFFICIAL / JCI
Рет қаралды 1,8 МЛН
Why Agent Frameworks Will Fail (and what to use instead)
19:21
Dave Ebbelaar
Рет қаралды 19 М.
Create starter flutter UI for free with ChatGPT 4o
2:54
Flutter Explained
Рет қаралды 10 М.
Andrew Ng On AI Agentic Workflows And Their Potential For Driving AI Progress
30:54
Vector Databases - Introduction | Vector Embeddings and Similarity Search
5:22
Unlimited AI Agents running locally with Ollama & AnythingLLM
15:21
Grounding for Gemini with Vertex AI Search and DIY RAG
35:31
Google Cloud Tech
Рет қаралды 10 М.
Google Cloud Agent Builder - Full Walkthrough (Tutorial)
18:59
Victor Dantas
Рет қаралды 8 М.
Introduction to Vertex AI Studio
27:51
Google Cloud
Рет қаралды 28 М.
Отдых для геймера? 😮‍💨 Hiper Engine B50
1:00
Как слушать музыку с помощью чека?
0:36