├── .gitignore ├── LICENSE ├── README.md ├── agent ├── agent.py └── requirements.txt ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── scripts ├── run-agent.bat ├── run-agent.sh ├── setup-agent.bat └── setup-agent.sh ├── src └── app │ ├── api │ └── copilotkit │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/README.md -------------------------------------------------------------------------------- /agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/agent/agent.py -------------------------------------------------------------------------------- /agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/agent/requirements.txt -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/public/window.svg -------------------------------------------------------------------------------- /scripts/run-agent.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/scripts/run-agent.bat -------------------------------------------------------------------------------- /scripts/run-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/scripts/run-agent.sh -------------------------------------------------------------------------------- /scripts/setup-agent.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/scripts/setup-agent.bat -------------------------------------------------------------------------------- /scripts/setup-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/scripts/setup-agent.sh -------------------------------------------------------------------------------- /src/app/api/copilotkit/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/src/app/api/copilotkit/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-adk/HEAD/tsconfig.json --------------------------------------------------------------------------------