Mike speaks very fast but he uses very simple english so any non-native speaker can easily understand him. Thanks Mike!
@brendenriggs90186 ай бұрын
I'm a manager for the team responsible for all of my company's GenAi features. I'll definitely be asking everyone on my team to watch this video and any others related to this. Looking forward to seeing more vids like this one.
@dozo_ca2 ай бұрын
This video was really good, I'm trying to build an agent for my internship project and you explained everything very well. I'm looking forward to also include more complex functions using lambda, im still unsure on how to do it though. If I can manage to also use some kind of RAG or knowledge base it will be cool
@robsondouglas80405 ай бұрын
Thank you very much for this video. I just have a little doubt about the model permission, but Google solved this. About the code example and the tour in the Bedrock was perfect! Thank you!
@saeedesmailii7 ай бұрын
There is no link to the github repo in the description.
@codeinrust6 ай бұрын
Excellent plain English explanations, and a real live demonstration, instead of pre-recorded cheating videos. Excellent!
@amazonwebservices6 ай бұрын
We're glad you like it! 😀
@tobyrigby77 ай бұрын
Literally in love with your videos Mike! I always learn something new, and in an easy to digest way.
@amazonwebservices7 ай бұрын
That's fantastic to hear! 😀 ☁️ 🙌
@MarcusExplainsStuff2 ай бұрын
I love that o1-mini can do everything he said LLM's cant do. I love this space in tech. You can barely get content out before it is outdated lol
@Cloud-rb9ooАй бұрын
Agents are cool. The python integration part is the one that gives me a pause.
@BigAlSydney3 ай бұрын
So good. Keep up these excellent videos!!!
@DavidCarnahanSA6 ай бұрын
Great job. Loved this explanation of Agents. Thanks!
@amazonwebservices6 ай бұрын
Glad you like it! 😁
@DionisioMichael6 ай бұрын
Great job. Very easy to follow!
@amazonwebservices6 ай бұрын
Thank you! 😊 🤝 ☁️
@SagarThosar-s6c14 күн бұрын
I may be asking this question out of context here but what I want to understand is how are we assuming parameters directly in the code. For eg: we directly used event['agent'] or event.getparameters[] so is there a standard to this that how will the agent invoke the lambda function. Do we have a fixed template somewhere that (event,context) has to be prepared a certain way before it calls lambda function ?
@powerofzero53706 ай бұрын
I still have some questions around the bigger picture of the Bedrock architecture... I understand agents and their use cases but I thought the idea when building an app was to 'front-end' the agents with a broader context FM that would be the actual chatbot interface? In other words, I am working on an application that will have a number (maybe 6 or so) of specialized agents that I thought would be invoked by the chat interface FM on an as needed basis. Also, can agents interact with each other in the background? If I can't front-end the agents I would need a chat interface for every agent I build which I very much doubt is the way the architecture is designed. Do you have something that shows a complete end-to-end application that encompasses all components?
@generatiacloud6 ай бұрын
What about a demo using multiple agents, multiple llm, langchain and langsmith to do tracing?
@pareenvatani94604 ай бұрын
Great presentation . Can agents communicate with each other for assistance ?
@madimakes4 ай бұрын
You mentioned that you have the full weather example available in the description, but i still haven't been able to locate it. I went to the linked page in the description but it's not there. Have i missed something?
@avisankhadutta40535 күн бұрын
How about serpapi? Can it be integrated? I am talking about access permission since serp needs its own api key.
@parallelbots45893 ай бұрын
Thanks for the video. How can I call a Bedrock prompt flow from the code?
@alejandroandrade98903 ай бұрын
Hi, great tutorial! I have one question, I'm testing an Agent with a Lambda function I already had previously. The process that the Lambda does is working fine, and the Lambda is not failing, but in the Agent console I get this response "The server encountered an error processing the Lambda response. Check the Lambda response and retry the request". Right now the Lambda is returning a Json, I have also tested just returning a String, and both cases are giving me that message as response. What could be happening in this case?
@guilhermebutzke110523 күн бұрын
Anyone has some comment about latency? I using agents with claude sonnet 3.5 v1, with advanced prompt. The conversation is ok, and the access to API also, but the latency its very large. simples answers, sometimes, are close to 12 seconds. Any idea?
@PappuPrasad-c8bАй бұрын
I am getting error while asking the time. Error: """ Your request rate is too high. Reduce the frequency of requests. """
@kkbava675 ай бұрын
Interesting demonstration of capabilities. However, didnt understand why we created a group with 2 functions within, and WE wrote the logic of mapping the LLM-discovered-intent to the actual function-to-be-called! Wouldnt it be possible to have 2 (lambda) functions that each performs ONE separate task and LLM discovers which (lambda) function to call, and what parameters to provide?
@sahiljadhav519Ай бұрын
Amazing ✌
@amazonwebservicesАй бұрын
😀 🙌
@solidfoxrock6 ай бұрын
You're missing "import datetime" in the Lambda function code
@LukeShepp6 ай бұрын
Can the model take the function output and build a response based upon it? E.g if you was to ask what time was it 2 hours ago - can it get the time from the function and perform its own logic on how to respond to the user? Or does it just return anything from the lambda exactly?
@pythonantole98927 ай бұрын
This is cool. Can this be modified to use Alexa so that the input comes in through voice as slots.
@mikegchambers7 ай бұрын
That's conceivable. Have an experiment. The Alexa platform already extracts intent from the input, so the input through Alexa becomes deterministic... but that sounds fun to play around with.
@SandeepPrajapati-xu9ruАй бұрын
what if your python function call another function?
@rekhasfahrizi24414 күн бұрын
it miss "import datetime"
@julienpradier73265 ай бұрын
Do you, guys, know about OpenAPI at AWS ? This is just to complicated .....
@RohitMarathe_rpm3606 ай бұрын
Honestly what a useless tool just has bunch of UI to do drag and drop. ideally to build complex solutions you would require many agents. This can only solve rag types of systems a typical Q&A system.
@amjads897120 күн бұрын
Agents are mainly for RAG , what we’re you expecting?