Skip to content

Commit

Permalink
fix(LAB-3307): fix model name on LLM static export
Browse files Browse the repository at this point in the history
  • Loading branch information
paulruelle committed Jan 9, 2025
1 parent 8779b87 commit 26b3f8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/kili/llm/services/export/dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ def export(
else:
model_names = {
chat_item.get("modelName")
for chat_item in asset["labels"][0]["chatItems"]
for label in asset["labels"]
for chat_item in label["chatItems"]
if chat_item.get("modelName") is not None
}
obfuscated_models = {
Expand Down

0 comments on commit 26b3f8a

Please sign in to comment.