├── .DS_Store ├── .env ├── .gitattributes ├── .langgraph_api ├── .langgraph_checkpoint.1.pckl ├── .langgraph_checkpoint.2.pckl ├── .langgraph_checkpoint.3.pckl ├── .langgraph_ops.pckl ├── .langgraph_retry_counter.pckl ├── store.pckl └── store.vectors.pckl ├── .vscode └── settings.json ├── README.md ├── README_NEW_TOOLS.md ├── __pycache__ ├── amap_tools.cpython-312.pyc ├── graph.cpython-312.pyc └── graph.cpython-313.pyc ├── activate_env.sh ├── agent-chat-ui-main ├── .codespellignore ├── .dockerignore ├── .env.example ├── .github │ └── workflows │ │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── LICENSE ├── README.md ├── components.json ├── eslint.config.js ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── prettier.config.js ├── public │ └── logo.svg ├── src │ ├── app │ │ ├── api │ │ │ └── [..._path] │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── icons │ │ │ ├── github.tsx │ │ │ └── langgraph.tsx │ │ ├── thread │ │ │ ├── ContentBlocksPreview.tsx │ │ │ ├── MultimodalPreview.tsx │ │ │ ├── agent-inbox │ │ │ │ ├── components │ │ │ │ │ ├── inbox-item-input.tsx │ │ │ │ │ ├── state-view.tsx │ │ │ │ │ ├── thread-actions-view.tsx │ │ │ │ │ ├── thread-id.tsx │ │ │ │ │ └── tool-call-table.tsx │ │ │ │ ├── hooks │ │ │ │ │ └── use-interrupted-actions.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── artifact.tsx │ │ │ ├── history │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── markdown-styles.css │ │ │ ├── markdown-text.tsx │ │ │ ├── messages │ │ │ │ ├── ai.tsx │ │ │ │ ├── generic-interrupt.tsx │ │ │ │ ├── human.tsx │ │ │ │ ├── shared.tsx │ │ │ │ └── tool-calls.tsx │ │ │ ├── syntax-highlighter.tsx │ │ │ ├── tooltip-icon-button.tsx │ │ │ └── utils.ts │ │ └── ui │ │ │ ├── avatar.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── password-input.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── textarea.tsx │ │ │ └── tooltip.tsx │ ├── hooks │ │ ├── use-file-upload.tsx │ │ └── useMediaQuery.tsx │ ├── lib │ │ ├── agent-inbox-interrupt.ts │ │ ├── api-key.tsx │ │ ├── ensure-tool-responses.ts │ │ ├── multimodal-utils.ts │ │ └── utils.ts │ └── providers │ │ ├── Stream.tsx │ │ ├── Thread.tsx │ │ └── client.ts ├── tailwind.config.js └── tsconfig.json ├── amap_tools.py ├── graph.py ├── images └── fig.png ├── langgraph.json ├── requirements.txt ├── telco_data.csv ├── test_agent_simple.py ├── test_amap_tools.py └── test_fig_inter.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.langgraph_api/.langgraph_checkpoint.1.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.langgraph_api/.langgraph_checkpoint.1.pckl -------------------------------------------------------------------------------- /.langgraph_api/.langgraph_checkpoint.2.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.langgraph_api/.langgraph_checkpoint.2.pckl -------------------------------------------------------------------------------- /.langgraph_api/.langgraph_checkpoint.3.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.langgraph_api/.langgraph_checkpoint.3.pckl -------------------------------------------------------------------------------- /.langgraph_api/.langgraph_ops.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.langgraph_api/.langgraph_ops.pckl -------------------------------------------------------------------------------- /.langgraph_api/.langgraph_retry_counter.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.langgraph_api/.langgraph_retry_counter.pckl -------------------------------------------------------------------------------- /.langgraph_api/store.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.langgraph_api/store.pckl -------------------------------------------------------------------------------- /.langgraph_api/store.vectors.pckl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.langgraph_api/store.vectors.pckl -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 使用前需自行获取相应的api key填入 .env中喔。 2 | 3 | 感谢大家的支持和喜爱。 4 | 5 | 有任何问题欢迎联系我。 6 | 7 | -------------------------------------------------------------------------------- /README_NEW_TOOLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/README_NEW_TOOLS.md -------------------------------------------------------------------------------- /__pycache__/amap_tools.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/__pycache__/amap_tools.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/graph.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/__pycache__/graph.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/graph.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/__pycache__/graph.cpython-313.pyc -------------------------------------------------------------------------------- /activate_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/activate_env.sh -------------------------------------------------------------------------------- /agent-chat-ui-main/.codespellignore: -------------------------------------------------------------------------------- 1 | productionize -------------------------------------------------------------------------------- /agent-chat-ui-main/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | .git 4 | .env -------------------------------------------------------------------------------- /agent-chat-ui-main/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/.env.example -------------------------------------------------------------------------------- /agent-chat-ui-main/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/.github/workflows/ci.yml -------------------------------------------------------------------------------- /agent-chat-ui-main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/.gitignore -------------------------------------------------------------------------------- /agent-chat-ui-main/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/.npmrc -------------------------------------------------------------------------------- /agent-chat-ui-main/.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | 5 | # 6 | pnpm-lock.yaml 7 | -------------------------------------------------------------------------------- /agent-chat-ui-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/LICENSE -------------------------------------------------------------------------------- /agent-chat-ui-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/README.md -------------------------------------------------------------------------------- /agent-chat-ui-main/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/components.json -------------------------------------------------------------------------------- /agent-chat-ui-main/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/eslint.config.js -------------------------------------------------------------------------------- /agent-chat-ui-main/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/next.config.mjs -------------------------------------------------------------------------------- /agent-chat-ui-main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/package.json -------------------------------------------------------------------------------- /agent-chat-ui-main/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/pnpm-lock.yaml -------------------------------------------------------------------------------- /agent-chat-ui-main/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/postcss.config.mjs -------------------------------------------------------------------------------- /agent-chat-ui-main/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/prettier.config.js -------------------------------------------------------------------------------- /agent-chat-ui-main/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/public/logo.svg -------------------------------------------------------------------------------- /agent-chat-ui-main/src/app/api/[..._path]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/app/api/[..._path]/route.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/app/favicon.ico -------------------------------------------------------------------------------- /agent-chat-ui-main/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/app/globals.css -------------------------------------------------------------------------------- /agent-chat-ui-main/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/app/layout.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/app/page.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/icons/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/icons/github.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/icons/langgraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/icons/langgraph.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/ContentBlocksPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/ContentBlocksPreview.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/MultimodalPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/MultimodalPreview.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/components/inbox-item-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/components/inbox-item-input.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/components/state-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/components/state-view.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/components/thread-actions-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/components/thread-actions-view.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/components/thread-id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/components/thread-id.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/components/tool-call-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/components/tool-call-table.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/hooks/use-interrupted-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/hooks/use-interrupted-actions.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/index.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/types.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/agent-inbox/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/agent-inbox/utils.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/artifact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/artifact.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/history/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/history/index.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/index.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/markdown-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/markdown-styles.css -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/markdown-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/markdown-text.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/messages/ai.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/messages/ai.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/messages/generic-interrupt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/messages/generic-interrupt.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/messages/human.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/messages/human.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/messages/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/messages/shared.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/messages/tool-calls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/messages/tool-calls.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/syntax-highlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/syntax-highlighter.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/tooltip-icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/tooltip-icon-button.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/thread/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/thread/utils.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/button.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/card.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/input.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/label.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/password-input.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/hooks/use-file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/hooks/use-file-upload.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/hooks/useMediaQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/hooks/useMediaQuery.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/lib/agent-inbox-interrupt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/lib/agent-inbox-interrupt.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/src/lib/api-key.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/lib/api-key.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/lib/ensure-tool-responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/lib/ensure-tool-responses.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/src/lib/multimodal-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/lib/multimodal-utils.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/lib/utils.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/src/providers/Stream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/providers/Stream.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/providers/Thread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/providers/Thread.tsx -------------------------------------------------------------------------------- /agent-chat-ui-main/src/providers/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/src/providers/client.ts -------------------------------------------------------------------------------- /agent-chat-ui-main/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/tailwind.config.js -------------------------------------------------------------------------------- /agent-chat-ui-main/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/agent-chat-ui-main/tsconfig.json -------------------------------------------------------------------------------- /amap_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/amap_tools.py -------------------------------------------------------------------------------- /graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/graph.py -------------------------------------------------------------------------------- /images/fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/images/fig.png -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/langgraph.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /telco_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/telco_data.csv -------------------------------------------------------------------------------- /test_agent_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/test_agent_simple.py -------------------------------------------------------------------------------- /test_amap_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/test_amap_tools.py -------------------------------------------------------------------------------- /test_fig_inter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexLIAOPOLY/LangGraph_Agent/HEAD/test_fig_inter.py --------------------------------------------------------------------------------