Skip to content

Commit

Permalink
fix(LAB-3307): optional labeler
Browse files Browse the repository at this point in the history
  • Loading branch information
paulruelle committed Dec 23, 2024
1 parent 7c64a9c commit a04217a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kili/adapters/kili_api_gateway/llm/mappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def map_import_conversations_input(conversations: List[Conversation]) -> Dict:
],
"externalId": conversation.get("external_id"),
"label": conversation.get("label"),
"labeler": conversation["labeler"],
"labeler": conversation.get("labeler"),
"metadata": conversation.get("metadata"),
}
for conversation in conversations
Expand Down

0 comments on commit a04217a

Please sign in to comment.