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
20 lines
545 B
Python
20 lines
545 B
Python
from promptflow.core import tool
|
|
import json
|
|
import re
|
|
|
|
# The inputs section will change based on the arguments of the tool function, after you save the code
|
|
# Adding type to arguments and return value will help the system show the types properly
|
|
# Please update the function name/signature per need
|
|
|
|
|
|
@tool
|
|
def my_python_tool(input1: str) -> str:
|
|
input1 = re.sub(r'[$\\!]', '', input1)
|
|
try:
|
|
json_answer = json.loads(input1)
|
|
answer = json_answer['answer']
|
|
except Exception:
|
|
answer = input1
|
|
|
|
return answer
|