From b218bebeec6d8868a78e7fcfb1f6ef4ae28b0401 Mon Sep 17 00:00:00 2001 From: user Date: Thu, 26 Dec 2024 07:13:14 -0500 Subject: [PATCH] Fix bug where nested agents were not using specified provider. --- CHANGELOG.md | 4 ++++ ra_aid/__main__.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a704b72..593f89a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/ra_aid/__main__.py b/ra_aid/__main__.py index 5f0562d..49f7b7a 100644 --- a/ra_aid/__main__.py +++ b/ra_aid/__main__.py @@ -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