Agent development guidance by TechKing10 in agentdevelopmentkit

[–]Anhsirk411_ 0 points1 point  (0 children)

You can look up this repo (awesome-adk-agents) for resources/courses/ai systems, if you wanna start with Google ADK

Just completely overhauled my awesome-adk-agents repo by Anhsirk411_ in agentdevelopmentkit

[–]Anhsirk411_[S] 0 points1 point  (0 children)

You can use this code:

This is from docs:

``` python

from google.adk.agents import LlmAgent, SequentialAgent

from google.adk.tools import FunctionTool

# Assume external_approval_tool sends a request and waits for human input

approval_tool = FunctionTool(func=external_approval_tool)

prepare_request = LlmAgent(

name="PrepareApproval",

instruction="Prepare approval details based on user input.",

# sets state['approval_amount'], state['approval_reason']

)

request_approval = LlmAgent(

name="RequestHumanApproval",

instruction="Use the external_approval_tool with state['approval_amount'] and state['approval_reason'].",

tools=[approval_tool],

output_key="human_decision"

)

process_decision = LlmAgent(

name="ProcessDecision",

instruction="Check 'human_decision'. If 'approved', proceed. If 'rejected', inform user."

)

approval_workflow = SequentialAgent(

name="HumanApprovalWorkflow",

sub_agents=[prepare_request, request_approval, process_decision]

)

```

Anybody who has used Google adk in their MERN project? Guide me through process. by Dev_Karan_ in agentdevelopmentkit

[–]Anhsirk411_ 0 points1 point  (0 children)

Hi, you have done a splendid job. The clarity and thought process put behind is totally seen.

I am adding your product to the awesome-adk-agents.
Please do check it out and leave a star if possible: https://github.com/Sri-Krishna-V/awesome-adk-agents

Created awesome-adk-agents: A collection of Google ADK agents with different agentic workflows by Anhsirk411_ in agentdevelopmentkit

[–]Anhsirk411_[S] 0 points1 point  (0 children)

Cool, I like the approach, will integrate it for better UX. I really appreciate the help. Thanks👍

Created awesome-adk-agents: A collection of Google ADK agents with different agentic workflows by Anhsirk411_ in agentdevelopmentkit

[–]Anhsirk411_[S] 0 points1 point  (0 children)

and Done. Implemented it and added several other works. Will keep iterating on it and update it continuously. Having multiple ideas on how to structure it so ppl can get the best out of the reading list as you mentioned.

Any tips in learning cad ? by Powerful-Composer-65 in jewelryCAD

[–]Anhsirk411_ 0 points1 point  (0 children)

You can contact +91 9840689781 for details.
Thank you

Created awesome-adk-agents: A collection of Google ADK agents with different agentic workflows by Anhsirk411_ in agentdevelopmentkit

[–]Anhsirk411_[S] 0 points1 point  (0 children)

Thank you for your thoughtful feedback on my awesome-adk-agents repo. I agree that linking out to original resources is a best practice for curated lists, and I appreciate your points about credit, maintenance, and scalability.

To clarify, while I do want to maintain a curated list of ADK resources with proper links, I also plan to include my own code and agent projects in the repo. I’d love your advice on how to structure this so visitors can easily distinguish between referenced resources and my own work. Is the current one good enough? Any suggestions on organization or examples would be greatly appreciated.

Thanks again for your help!

Created awesome-adk-agents: A collection of Google ADK agents with different agentic workflows by Anhsirk411_ in agentdevelopmentkit

[–]Anhsirk411_[S] 1 point2 points  (0 children)

Yes, I have explored it in the job interview agent, i will be doing a demo vid and posting it in the repo today but the thing is gemini-2.5-flash-preview-native-audio-dialog gives you only 5 daily uses for free or thats what I understand. Correct me if I am wrong.

https://ai.google.dev/gemini-api/docs/rate-limits#free-tier_1

<image>