ai_workflows / app /utils /endpoints_utils.py
theRealNG's picture
restructure the codebase
1f39bb8
raw
history blame contribute delete
179 Bytes
from typing import List
def CreateTilInputs(content: List[str]) -> dict:
separator = "\n* "
content[0] = "* " + content[0]
return {"content": separator.join(content)}