├── .docs ├── agno-codebase.txt ├── agno-cookbooks.txt ├── agno-core-codebase.txt ├── ai-generated-copilotkit-documentation.md ├── copilotkit-docs.txt ├── copilotkit-frontend-js-runtime-codebase.txt ├── copilotkit-python-sdk-codebase.txt ├── crewai-docs.txt └── gemini-2-5-pro-system-prompt.txt ├── .gitignore ├── .traerules ├── LICENSE ├── README.md ├── backend ├── copilotkit_integration │ ├── agno_agent_adapter.py │ ├── agno_workflow_adapter.py │ └── utils.py ├── main.py ├── markdown_agent.py ├── requirements.txt ├── sample_agent.py └── test.py ├── gauravdhiman-agno-copilotkit-integration.txt └── ui ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ ├── config.ts │ └── copilotkit │ │ └── route.ts ├── components │ ├── Timeline.tsx │ └── ui │ │ └── accordion.tsx ├── custom-chat │ └── page.tsx ├── debug │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── lib │ └── utils.ts └── page.tsx ├── components.json ├── lib └── utils.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.docs/agno-codebase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/agno-codebase.txt -------------------------------------------------------------------------------- /.docs/agno-cookbooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/agno-cookbooks.txt -------------------------------------------------------------------------------- /.docs/agno-core-codebase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/agno-core-codebase.txt -------------------------------------------------------------------------------- /.docs/ai-generated-copilotkit-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/ai-generated-copilotkit-documentation.md -------------------------------------------------------------------------------- /.docs/copilotkit-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/copilotkit-docs.txt -------------------------------------------------------------------------------- /.docs/copilotkit-frontend-js-runtime-codebase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/copilotkit-frontend-js-runtime-codebase.txt -------------------------------------------------------------------------------- /.docs/copilotkit-python-sdk-codebase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/copilotkit-python-sdk-codebase.txt -------------------------------------------------------------------------------- /.docs/crewai-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/crewai-docs.txt -------------------------------------------------------------------------------- /.docs/gemini-2-5-pro-system-prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.docs/gemini-2-5-pro-system-prompt.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.traerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/.traerules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/README.md -------------------------------------------------------------------------------- /backend/copilotkit_integration/agno_agent_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/backend/copilotkit_integration/agno_agent_adapter.py -------------------------------------------------------------------------------- /backend/copilotkit_integration/agno_workflow_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/backend/copilotkit_integration/agno_workflow_adapter.py -------------------------------------------------------------------------------- /backend/copilotkit_integration/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/backend/copilotkit_integration/utils.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/markdown_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/backend/markdown_agent.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/sample_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/backend/sample_agent.py -------------------------------------------------------------------------------- /backend/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/backend/test.py -------------------------------------------------------------------------------- /gauravdhiman-agno-copilotkit-integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/gauravdhiman-agno-copilotkit-integration.txt -------------------------------------------------------------------------------- /ui/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/app/api/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/api/config.ts -------------------------------------------------------------------------------- /ui/app/api/copilotkit/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/api/copilotkit/route.ts -------------------------------------------------------------------------------- /ui/app/components/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/components/Timeline.tsx -------------------------------------------------------------------------------- /ui/app/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/components/ui/accordion.tsx -------------------------------------------------------------------------------- /ui/app/custom-chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/custom-chat/page.tsx -------------------------------------------------------------------------------- /ui/app/debug/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/debug/page.tsx -------------------------------------------------------------------------------- /ui/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/favicon.ico -------------------------------------------------------------------------------- /ui/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/globals.css -------------------------------------------------------------------------------- /ui/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/layout.tsx -------------------------------------------------------------------------------- /ui/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/lib/utils.ts -------------------------------------------------------------------------------- /ui/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/app/page.tsx -------------------------------------------------------------------------------- /ui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/components.json -------------------------------------------------------------------------------- /ui/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/lib/utils.ts -------------------------------------------------------------------------------- /ui/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/next.config.mjs -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/pnpm-lock.yaml -------------------------------------------------------------------------------- /ui/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/postcss.config.mjs -------------------------------------------------------------------------------- /ui/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/public/next.svg -------------------------------------------------------------------------------- /ui/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/public/vercel.svg -------------------------------------------------------------------------------- /ui/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/tailwind.config.ts -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravdhiman/agno-copilotkit-integration/HEAD/ui/tsconfig.json --------------------------------------------------------------------------------