Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/RD-Agent
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 57d4744591dfab54bdbcacc742fbf9519d389283
Choose a base ref
..
head repository: microsoft/RD-Agent
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1df7012fe8780f897132c29386a461bf54d7be0e
Choose a head ref
Showing with 4 additions and 2 deletions.
  1. +2 −1 CHANGELOG.md
  2. +2 −1 rdagent/oai/llm_utils.py
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.4.0](https://github.com/microsoft/RD-Agent/compare/v0.3.0...v0.4.0) (2024-12-10)
## [0.4.0](https://github.com/microsoft/RD-Agent/compare/v0.3.0...v0.4.0) (2024-12-20)


### Features
@@ -22,6 +22,7 @@
### Bug Fixes

* a default conf in scen qlib ([#503](https://github.com/microsoft/RD-Agent/issues/503)) ([d64a228](https://github.com/microsoft/RD-Agent/commit/d64a228525cbedd7687c1e06132eacd0d0647697))
* avoid warning for missing llama installation when not in use ([#509](https://github.com/microsoft/RD-Agent/issues/509)) ([5ec3422](https://github.com/microsoft/RD-Agent/commit/5ec342224c2c8c4cf591f1eae673e25b14218726))
* fix a bug in kaggle conf ([#459](https://github.com/microsoft/RD-Agent/issues/459)) ([b4ed32b](https://github.com/microsoft/RD-Agent/commit/b4ed32b17ef07d8557450063765585a48d5fcd32))
* patching weird azure deployment ([#494](https://github.com/microsoft/RD-Agent/issues/494)) ([89c50ae](https://github.com/microsoft/RD-Agent/commit/89c50aee2ec8bfd1cb23767ddf7dcdd023daac8b))
* templates bug ([#456](https://github.com/microsoft/RD-Agent/issues/456)) ([434a868](https://github.com/microsoft/RD-Agent/commit/434a8687eeda77e27b4938fb19694c15858ee446))
3 changes: 2 additions & 1 deletion rdagent/oai/llm_utils.py
Original file line number Diff line number Diff line change
@@ -46,7 +46,8 @@ def md5_hash(input_string: str) -> str:
try:
from llama import Llama
except ImportError:
logger.warning("llama is not installed.")
if LLM_SETTINGS.use_llama2:
logger.warning("llama is not installed.")


class ConvManager: