Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fixed the issue that context is missing for EntityRecognitionSkill
  • Loading branch information
xiangyan99 committed Mar 5, 2024
commit af9c4453aed32952e1ae85a384854539e197d5b1
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,8 @@ def _to_generated(self):
inputs=self.inputs,
outputs=self.outputs,
name=self.name,
description=self.description,
context=self.context,
odata_type=self.odata_type,
categories=self.categories,
default_language_code=self.default_language_code,
Expand Down Expand Up @@ -407,6 +409,8 @@ def _to_generated(self):
inputs=self.inputs,
outputs=self.outputs,
name=self.name,
description=self.description,
context=self.context,
odata_type=self.odata_type,
default_language_code=self.default_language_code,
include_opinion_mining=self.include_opinion_mining,
Expand Down