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
feat(knowledge): add support for additional HTTP methods
Extend `API_METHODS` to include HEAD, OPTIONS, and TRACE. Improve documentation for `KnowledgeFunctionProvider` with detailed usage examples and analysis modes.
* The `KnowledgeFunctionProvider` class is a specialized toolchain function provider designed to analyze API call chains and code structure relationships within a project.
19
+
* It supports two primary modes of analysis:
20
+
*
21
+
* 1. **API Endpoint Analysis**: This mode tracks the call chain by HTTP method and path, allowing for the identification of how API endpoints are processed through the system.
22
+
* 2. **Code Structure Analysis**: This mode tracks relationships between classes and methods, enabling the exploration of how different parts of the codebase interact.
23
+
*
24
+
* The class is particularly useful for understanding the flow of data and control within a project, especially in scenarios where API calls traverse multiple layers of the application, such as from a Controller to a Repository.
0 commit comments