From cb509ad6a5f35f613254d34e25100ed2fbd63daa Mon Sep 17 00:00:00 2001 From: Lael <127096683+laelhalawani@users.noreply.github.com> Date: Fri, 7 Feb 2025 21:14:51 +0100 Subject: [PATCH] Update application_structure.md (#3278) moved requirements.txt to root of the project in the recommended structure --- docs/docs/concepts/application_structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/concepts/application_structure.md b/docs/docs/concepts/application_structure.md index d27ed60b9..adc43e899 100644 --- a/docs/docs/concepts/application_structure.md +++ b/docs/docs/concepts/application_structure.md @@ -34,10 +34,10 @@ Below are examples of directory structures for Python and JavaScript application │ │ ├── tools.py # tools for your graph │ │ ├── nodes.py # node functions for you graph │ │ └── state.py # state definition of your graph - │ ├── requirements.txt # package dependencies │ ├── __init__.py │ └── agent.py # code for constructing your graph ├── .env # environment variables + ├── requirements.txt # package dependencies └── langgraph.json # configuration file for LangGraph ``` === "Python (pyproject.toml)"