e768098d0e
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
Flake8 Lint / flake8 (push) Has been cancelled
Spell check CI / Spell_Check (push) Has been cancelled
12 lines
352 B
Python
12 lines
352 B
Python
from typing import List
|
|
from promptflow.core import tool
|
|
|
|
|
|
@tool
|
|
def cleansing(entities_str: str) -> List[str]:
|
|
# Split, remove leading and trailing spaces/tabs/dots
|
|
parts = entities_str.split(",")
|
|
cleaned_parts = [part.strip(" \t.\"") for part in parts]
|
|
entities = [part for part in cleaned_parts if len(part) > 0]
|
|
return entities
|