Skip to content

Commit 4ba6cac

Browse files
committed
Implement Fact Sheet Fix
Signed-off-by: David Weik <geekupyourlife@gmail.com>
1 parent abeb96c commit 4ba6cac

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
This changelog documents all the different updates that occur for this framework.
44

5+
## [0.1.34] - 2025-12-18
6+
7+
No changes are required at this time.
8+
9+
### Added
10+
11+
- None
12+
13+
### Changed
14+
15+
- None
16+
17+
### Fixed
18+
19+
-
20+
521
## [0.1.33] - 2025-12-16
622

723
In order for these changes to take effect you need to update the source code of the [SAS Portalframework for SAS Viya](https://github.com/sassoftware/sas-portal-framework-for-sas-viya). If you have deployed the LLM containers in kubernetes no additional changes are required, if you have deployed them as an Azure Container App or Azure Container Instance please utilize the [prompt-builder-json.py](./utility/prompt-builder-json.py) utility script with the additional option -dt aca in order to enable the prompt builder for this as well.

LLM-Definitions/register-LLMs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ def register_model(base_path):
9595
if model_data.empty:
9696
print(f"WARNING: The selected LLM: {base_path} is not vailable in the llm_fact_sheet.csv.")
9797
print('WARNING: This entry is required for the Logging/Monitoring to work properly!')
98+
# create new model_data DataFrame, setting only the model column value since no other data are available in llm_fact_sheet.csv
99+
model_data = pd.DataFrame([{'model': base_path}], columns = ['model'])
98100
# Add additional model metadata from the llm_fact_sheet.csv
99101
model_attributes['llmModelType'] = model_attributes.get('llmModelType', 'GPT')
100102
model_data_dict = model_data.to_dict('records')[0]

0 commit comments

Comments
 (0)