Skip to content

Commit 0e65340

Browse files
committed
Fix small issues
Signed-off-by: David Weik <geekupyourlife@gmail.com>
1 parent f123b7a commit 0e65340

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
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.28] - 2025-09-25
6+
7+
No changes are requires at this time.
8+
9+
### Added
10+
11+
- None
12+
13+
### Changed
14+
15+
- None
16+
17+
### Fixed
18+
19+
- Fix argument error in publish-Embedding script and tag value in register-LLMs
20+
521
## [0.1.27] - 2025-09-10
622

723
No changes are requires at this time.

Embedding-Definitions/publish-Embedding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
elif destination.destinationType not in ['azure', 'aws', 'gcp', 'privatedocker', 'AWS', 'GCP', 'privateDocker']:
3232
raise ValueError(f"The provided destination is not a valid SCR destination. Please check: {args.destination}")
3333

34-
for model in args.llms:
34+
for model in args.embedding_models:
3535
model_details = mr.get_model_details(model)
3636
headers = {
3737
"Content-Type": "application/vnd.sas.models.publishing.request.asynchronous+json",

LLM-Definitions/register-LLMs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def register_model(base_path):
9696
print(f"The selected LLM: {base_path} is not vailable in the llm_fact_sheet.csv. This is a required entry!")
9797
else:
9898
# Add additional model metadata from the llm_fact_sheet.csv
99-
model_attributes['llmmodelType'] = model_attributes.get('llmmodelType', 'GPT')
99+
model_attributes['llmModelType'] = model_attributes.get('llmModelType', 'GPT')
100100
model_data_dict = model_data.to_dict('records')[0]
101101
model_attributes['provider'] = model_data_dict.get('provider', 'Unkown')
102102
model_attributes['endPoint'] = f"{args.scr_endpoint}/{base_path}/{base_path}"

0 commit comments

Comments
 (0)