Supported steps
Split Text
Run chain
You can now run the chain within a chain!
Python
from relevanceai.steps import SplitText
results = SplitText(
text="{{params.text}}",
method="tokens",
num_tokens=500,
).run({
"text" : "..."
})
You can now run the chain within a chain!
from relevanceai.steps import SplitText
results = SplitText(
text="{{params.text}}",
method="tokens",
num_tokens=500,
).run({
"text" : "..."
})