@@ -82,6 +82,7 @@ configure model, and connect to it.
82
82
* [ LLM providers interface implementations] ( #llm-providers-interface-implementations )
83
83
* [ Sequence diagram] ( #sequence-diagram )
84
84
* [ Token truncation algorithm] ( #token-truncation-algorithm )
85
+ * [ New ` pdm ` commands available in project repository] ( #new-pdm-commands-available-in-project-repository )
85
86
* [ Additional tools] ( #additional-tools )
86
87
* [ Utility to generate OpenAPI schema] ( #utility-to-generate-openapi-schema )
87
88
* [ Path] ( #path )
@@ -784,6 +785,28 @@ The context window size is limited for all supported LLMs which means that token
784
785

785
786
786
787
788
+ # New `pdm` commands available in project repository
789
+
790
+ ```
791
+ ╭───────────────────────────────────┬──────┬────────────────────────────────────────────────╮
792
+ │ Name │ Type │ Description │
793
+ ├───────────────────────────────────┼──────┼────────────────────────────────────────────────┤
794
+ │ benchmarks │ cmd │ pdm run make benchmarks │
795
+ │ check-types │ cmd │ pdm run make check-types │
796
+ │ coverage-report │ cmd │ pdm run make coverage-report │
797
+ │ generate-schema │ cmd │ pdm run make schema │
798
+ │ integration-tests-coverage-report │ cmd │ pdm run make integration-tests-coverage-report │
799
+ │ requirements │ cmd │ pdm run make requirements.txt │
800
+ │ security-check │ cmd │ pdm run make security-check │
801
+ │ start │ cmd │ pdm run make run │
802
+ │ test │ cmd │ pdm run make test │
803
+ │ test-e2e │ cmd │ pdm run make test-e2e │
804
+ │ test-integration │ cmd │ pdm run make test-integration │
805
+ │ test-unit │ cmd │ pdm run make test-unit │
806
+ │ unit-tests-coverage-report │ cmd │ pdm run make unit-tests-coverage-report │
807
+ ╰───────────────────────────────────┴──────┴────────────────────────────────────────────────╯
808
+ ```
809
+
787
810
# Additional tools
788
811
789
812
## Utility to generate OpenAPI schema
0 commit comments