You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The /src/langchain/index.ts file is becoming bloated very quickly with the current setup - already over 2k lines of code, which heavily impacts maintenance cost and makes it difficult to navigate and search between different actions.
Similarly to how it is done for the actions and tools, I suggest the langchain actions also get split each into its own file, which will improve readability and allow for easy navigation, maintenance.
Do the following things
spit the langchain/index.ts into multiple folders, depending on protocol name
divide the actions under src/actions into multiple folders, depending on protocol name
divide the tools under src/tools into multiple folders, depending on protocol name
The text was updated successfully, but these errors were encountered:
The
/src/langchain/index.ts
file is becoming bloated very quickly with the current setup - already over 2k lines of code, which heavily impacts maintenance cost and makes it difficult to navigate and search between different actions.Similarly to how it is done for the actions and tools, I suggest the langchain actions also get split each into its own file, which will improve readability and allow for easy navigation, maintenance.
Do the following things
The text was updated successfully, but these errors were encountered: