Skip to content

A visual, no-code interface for creating AI agents with Google ADK. Supports both cloud and local Ollama models with multi-tech stack integration.

License

Notifications You must be signed in to change notification settings

abhishekkumar35/google-adk-nocode

Repository files navigation

No-Code ADK Interface our site

A visual, no-code interface for creating, configuring, and deploying AI agents using the Google Agent Development Kit (ADK) without writing Python code. This package also supports integration with various tech stacks including Node.js and TypeScript.

Latest Updates (v0.1.3)

  • Improved Package Structure: Fixed issues with static files and templates
  • Enhanced Ollama Integration: Better support for locally installed Ollama models
  • Multi-Tech Stack Support: Generate API wrappers and clients for different programming languages
  • GitHub Sponsors Integration: Added support for project funding

Features

  • Visual agent builder with intuitive interface
  • Tool configuration through forms
  • Agent flow visualization and editing
  • One-click deployment
  • Template library for common agent patterns
  • Export to Python code for advanced customization
  • Support for both Google Gemini models and local Ollama models
  • Multi-tech stack integration (Python, Node.js, TypeScript, etc.)

Installation

pip install google-adk-nocode

Quick Start

  1. Launch the no-code interface:
adk-nocode start
  1. Access the interface at http://localhost:8080

  2. Create your first agent using the visual interface

Using Agents in Different Tech Stacks

Python Applications

Agents created with the No-Code ADK can be directly imported in Python:

from your_agent_package import root_agent

async def main():
    response = await root_agent.generate_content("Hello, agent!")
    print(response.text)

if __name__ == "__main__":
    import asyncio
    asyncio.run(main())

Node.js/TypeScript Applications

The No-Code ADK can generate REST API wrappers for your agents, making them accessible from any tech stack:

  1. Enable API export when creating your agent
  2. Use the generated API client in your Node.js/TypeScript application:
// TypeScript example
import { AgentClient } from './generated/agent-client';

async function main() {
  const agent = new AgentClient('http://localhost:8000');
  const response = await agent.generateContent('Hello, agent!');
  console.log(response.text);
}

main().catch(console.error);

Other Tech Stacks

For other tech stacks, you can use the REST API directly:

// JavaScript fetch example
fetch('http://localhost:8000/api/generate', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    prompt: 'Hello, agent!',
  }),
})
.then(response => response.json())
.then(data => console.log(data.text));

Documentation

For full documentation, visit our documentation site.

Support the Project

If you find No-Code ADK useful, please consider supporting its development:

Sponsor on GitHub

Your support helps ensure the continued development and maintenance of this project.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

About

A visual, no-code interface for creating AI agents with Google ADK. Supports both cloud and local Ollama models with multi-tech stack integration.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published