├── .github ├── FUNDING.yml └── workflows │ ├── deploy-snapshot.yaml │ └── deploy.yaml ├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── LICENSE ├── README.md ├── changelog.mustache ├── demo.gif ├── hotfix-changelog.sh ├── mvnw ├── mvnw.cmd ├── pom.xml ├── settings-template.xml └── src ├── main └── java │ └── org │ └── bsc │ └── langgraph4j │ └── agui │ ├── AGUIAgent.java │ ├── AGUIEvent.java │ ├── AGUILangGraphAgent.java │ ├── AGUIMessage.java │ ├── AGUISSEController.java │ └── AGUIType.java ├── test ├── java │ └── org │ │ └── bsc │ │ └── langgraph4j │ │ └── agui │ │ ├── AGUIAgentExecutor.java │ │ ├── AGUIApplication.java │ │ └── AGUISampleAgent.java └── resources │ ├── application.yml │ ├── logback.xml │ └── logging.properties └── webui ├── .gitignore ├── README.md ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── file.svg └── window.svg ├── src └── app │ ├── api │ └── langgraph4j │ │ └── route.ts │ ├── component │ ├── chat.tsx │ └── chatApproval.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── lib │ └── langgraph4j.ts │ └── page.tsx └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/.github/workflows/deploy-snapshot.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/README.md -------------------------------------------------------------------------------- /changelog.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/changelog.mustache -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/demo.gif -------------------------------------------------------------------------------- /hotfix-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/hotfix-changelog.sh -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/pom.xml -------------------------------------------------------------------------------- /settings-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/settings-template.xml -------------------------------------------------------------------------------- /src/main/java/org/bsc/langgraph4j/agui/AGUIAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/main/java/org/bsc/langgraph4j/agui/AGUIAgent.java -------------------------------------------------------------------------------- /src/main/java/org/bsc/langgraph4j/agui/AGUIEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/main/java/org/bsc/langgraph4j/agui/AGUIEvent.java -------------------------------------------------------------------------------- /src/main/java/org/bsc/langgraph4j/agui/AGUILangGraphAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/main/java/org/bsc/langgraph4j/agui/AGUILangGraphAgent.java -------------------------------------------------------------------------------- /src/main/java/org/bsc/langgraph4j/agui/AGUIMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/main/java/org/bsc/langgraph4j/agui/AGUIMessage.java -------------------------------------------------------------------------------- /src/main/java/org/bsc/langgraph4j/agui/AGUISSEController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/main/java/org/bsc/langgraph4j/agui/AGUISSEController.java -------------------------------------------------------------------------------- /src/main/java/org/bsc/langgraph4j/agui/AGUIType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/main/java/org/bsc/langgraph4j/agui/AGUIType.java -------------------------------------------------------------------------------- /src/test/java/org/bsc/langgraph4j/agui/AGUIAgentExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/test/java/org/bsc/langgraph4j/agui/AGUIAgentExecutor.java -------------------------------------------------------------------------------- /src/test/java/org/bsc/langgraph4j/agui/AGUIApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/test/java/org/bsc/langgraph4j/agui/AGUIApplication.java -------------------------------------------------------------------------------- /src/test/java/org/bsc/langgraph4j/agui/AGUISampleAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/test/java/org/bsc/langgraph4j/agui/AGUISampleAgent.java -------------------------------------------------------------------------------- /src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/test/resources/application.yml -------------------------------------------------------------------------------- /src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/test/resources/logback.xml -------------------------------------------------------------------------------- /src/test/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/test/resources/logging.properties -------------------------------------------------------------------------------- /src/webui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/.gitignore -------------------------------------------------------------------------------- /src/webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/README.md -------------------------------------------------------------------------------- /src/webui/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/next.config.ts -------------------------------------------------------------------------------- /src/webui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/package.json -------------------------------------------------------------------------------- /src/webui/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/postcss.config.mjs -------------------------------------------------------------------------------- /src/webui/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/public/file.svg -------------------------------------------------------------------------------- /src/webui/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/public/window.svg -------------------------------------------------------------------------------- /src/webui/src/app/api/langgraph4j/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/src/app/api/langgraph4j/route.ts -------------------------------------------------------------------------------- /src/webui/src/app/component/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/src/app/component/chat.tsx -------------------------------------------------------------------------------- /src/webui/src/app/component/chatApproval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/src/app/component/chatApproval.tsx -------------------------------------------------------------------------------- /src/webui/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/src/app/favicon.ico -------------------------------------------------------------------------------- /src/webui/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/src/app/globals.css -------------------------------------------------------------------------------- /src/webui/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/src/app/layout.tsx -------------------------------------------------------------------------------- /src/webui/src/app/lib/langgraph4j.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/src/app/lib/langgraph4j.ts -------------------------------------------------------------------------------- /src/webui/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/src/app/page.tsx -------------------------------------------------------------------------------- /src/webui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langgraph4j/langgraph4j-copilotkit/HEAD/src/webui/tsconfig.json --------------------------------------------------------------------------------