Add get config endpoint#107
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request adds a new
/configendpoint to the template server, allowing clients to retrieve the current server configuration and version. It introduces a new response model, updates the router and server setup to support this endpoint, and adds comprehensive tests to ensure correct behavior.New
/configendpoint and response model:GetConfigResponsemodel to encapsulate server configuration and version in API responses. (python_template_server/models.py)get_configmethod and/configroute toTemplateServerRouter, returning the current configuration and version. (python_template_server/routers/template_server_router.py) [1] [2]configure_routermethod to inject configuration and version into the router instance. (python_template_server/routers/template_server_router.py)Server and router integration:
configure_routerwith the current configuration and version before route setup. (python_template_server/template_server.py) [1] [2]Testing improvements:
/configendpoint, including integration and unit tests for the response model. (tests/routers/test_template_server_router.py,tests/test_models.py,tests/conftest.py) [1] [2] [3] [4]These changes improve the server's introspection capabilities and ensure robust test coverage for the new endpoint.