├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── langgraph_agents ├── agents │ ├── __init__.py │ └── data_analyst.py ├── config │ └── .gitkeep └── tools │ ├── __init__.py │ └── local_python_executor.py ├── main.py ├── pipelines └── data_analyst.py ├── pyproject.toml ├── schemas.py ├── start.bat ├── start.sh └── utils └── pipelines ├── auth.py ├── main.py └── misc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/config.py -------------------------------------------------------------------------------- /langgraph_agents/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /langgraph_agents/agents/data_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/langgraph_agents/agents/data_analyst.py -------------------------------------------------------------------------------- /langgraph_agents/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /langgraph_agents/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /langgraph_agents/tools/local_python_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/langgraph_agents/tools/local_python_executor.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/main.py -------------------------------------------------------------------------------- /pipelines/data_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/pipelines/data_analyst.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/schemas.py -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/start.bat -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/start.sh -------------------------------------------------------------------------------- /utils/pipelines/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/utils/pipelines/auth.py -------------------------------------------------------------------------------- /utils/pipelines/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/utils/pipelines/main.py -------------------------------------------------------------------------------- /utils/pipelines/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casedone/langgraph-agent-openwebui-demo/HEAD/utils/pipelines/misc.py --------------------------------------------------------------------------------