Configuration initialisation (#335)

* - Fixed error reporting in config
- Updated tg-init-pulsar to be able to load initial config to config-svc
- Tweaked API naming and added more config calls

* Tools to dump out prompts and agent tools
This commit is contained in:
cybermaggedon 2025-04-02 13:52:33 +01:00 committed by GitHub
parent a2c64cad4a
commit 1d222235d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 471 additions and 37 deletions

View file

@ -15,7 +15,7 @@ def show_config(url):
api = Api(url)
config, version = api.get_config()
config, version = api.config_all()
print("Version:", version)
print(json.dumps(config, indent=4))