Fix bug where nested agents were not using specified provider.
This commit is contained in:
parent
8018bce252
commit
b218bebeec
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue