You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like there should be a solution to combine multiple skills in the skillset.
Seems like the Split Text skill should be splitting the big documents, so then Custom.WebApiSkill could pick it up and process further. Where this data would be indexed with Indexers.
I have an issue with combining these 2 skills. I set the Split one to be first and its Input to
{
"name": "text",
"source": "/document/content"
}
So then in Custom.WebApiSkill I need to catch it somehow.
I tried with
"inputs": [
{
"name": "text",
"source": "/pages"
}
(as this required to have "/" at the beginning)
But this doesn't work. Does anyone have a solution for combination of these 2? Please advise.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi guys,
It seems like there should be a solution to combine multiple skills in the skillset.
Seems like the Split Text skill should be splitting the big documents, so then Custom.WebApiSkill could pick it up and process further. Where this data would be indexed with Indexers.
I have an issue with combining these 2 skills. I set the Split one to be first and its Input to
{
"name": "text",
"source": "/document/content"
}
and then
"outputs": [
{
"name": "textItems",
"targetName": "pages"
}
]
So then in Custom.WebApiSkill I need to catch it somehow.
I tried with
"inputs": [
{
"name": "text",
"source": "/pages"
}
(as this required to have "/" at the beginning)
But this doesn't work. Does anyone have a solution for combination of these 2? Please advise.
Thanks,
Denis
Beta Was this translation helpful? Give feedback.
All reactions