diff --git a/docs/docs/concepts/application_structure.md b/docs/docs/concepts/application_structure.md index a23b463ac..4b1f79228 100644 --- a/docs/docs/concepts/application_structure.md +++ b/docs/docs/concepts/application_structure.md @@ -48,7 +48,7 @@ Below are examples of directory structures for Python and JavaScript application │ ├── utils # utilities for your graph │ │ ├── __init__.py │ │ ├── tools.py # tools for your graph - │ │ ├── nodes.py # node functions for you graph + │ │ ├── nodes.py # node functions for your graph │ │ └── state.py # state definition of your graph │ ├── __init__.py │ └── agent.py # code for constructing your graph @@ -64,7 +64,7 @@ Below are examples of directory structures for Python and JavaScript application ├── src # all project code lies within here │ ├── utils # optional utilities for your graph │ │ ├── tools.ts # tools for your graph - │ │ ├── nodes.ts # node functions for you graph + │ │ ├── nodes.ts # node functions for your graph │ │ └── state.ts # state definition of your graph │ └── agent.ts # code for constructing your graph ├── package.json # package dependencies