neuro-san 0.6.23
What's Changed
- Extend MCP tool call parameters. by @andreidenissov-cog in #588
- Add gemini 3 flash model in default_llm_info.hocon by @Noravee in #645
- Add thinking parameters for Gemini models by @Noravee in #646
- Update copyrights by @d1donlydfink in #649
- Allow multiple manifest files in AGENT_MANIFEST_FILE env var by @d1donlydfink in #648
Note:
There is a small logging change that shifts the log message telling you when the next read of the manifest files will be.
This used to be at INFO level and now it is at DEBUG level. This increases the signal-to-noise for the vast majority of users
in default logs where the periodicity for checking manifest files is ~1 second by making it disappear by default.
If you cared about this message, please modify the loggers section of your logging.json for your deployment accordingly with something like:
"neuro_san.service.watcher.registries.registry_storage_updater.RegistryStorageUpdater": {
"level": "DEBUG",
"handlers": [
"http_console"
],
"propagate": false
},
See https://docs.python.org/3/library/logging.config.html#dictionary-schema-details
as to how this file can be configured for your own needs. Examples there are provided in YAML,
but these can be easily translated to JSON (which we prefer).
Another good resource: https://docs.python.org/3/howto/logging-cookbook.html
Full Changelog: 0.6.22...0.6.23