├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── MULTI_TECH_STACK.md ├── PUBLISHING.md ├── README.md ├── app.py ├── docs ├── README.md ├── index.html └── styles.css ├── pyproject.toml ├── setup.cfg ├── setup.py └── src └── google ├── __init__.py └── adk ├── __init__.py └── nocode ├── __init__.py ├── app.py ├── cli.py ├── ollama_integration.py ├── static ├── css │ └── styles.css └── js │ └── app.js └── templates └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /MULTI_TECH_STACK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/MULTI_TECH_STACK.md -------------------------------------------------------------------------------- /PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/PUBLISHING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/app.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/docs/styles.css -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/setup.py -------------------------------------------------------------------------------- /src/google/__init__.py: -------------------------------------------------------------------------------- 1 | """Google namespace package.""" 2 | -------------------------------------------------------------------------------- /src/google/adk/__init__.py: -------------------------------------------------------------------------------- 1 | """Google ADK namespace package.""" 2 | -------------------------------------------------------------------------------- /src/google/adk/nocode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/src/google/adk/nocode/__init__.py -------------------------------------------------------------------------------- /src/google/adk/nocode/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/src/google/adk/nocode/app.py -------------------------------------------------------------------------------- /src/google/adk/nocode/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/src/google/adk/nocode/cli.py -------------------------------------------------------------------------------- /src/google/adk/nocode/ollama_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/src/google/adk/nocode/ollama_integration.py -------------------------------------------------------------------------------- /src/google/adk/nocode/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/src/google/adk/nocode/static/css/styles.css -------------------------------------------------------------------------------- /src/google/adk/nocode/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/src/google/adk/nocode/static/js/app.js -------------------------------------------------------------------------------- /src/google/adk/nocode/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkumar35/google-adk-nocode/HEAD/src/google/adk/nocode/templates/index.html --------------------------------------------------------------------------------