Fix bug where nested agents were not using specified provider.

This commit is contained in:
user 2024-12-26 07:13:14 -05:00
parent 8018bce252
commit b218bebeec
2 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
- Add logging.
## [0.10.0] - 2024-12-24
- Added new web research agent.

View File

@ -196,6 +196,8 @@ def main():
# Store config in global memory
_global_memory['config'] = config
_global_memory['config']['provider'] = args.provider
_global_memory['config']['model'] = args.model
_global_memory['config']['expert_provider'] = args.expert_provider
_global_memory['config']['expert_model'] = args.expert_model