[+] partially add transform mock

1. researching hugging face model
    https://huggingface.co/sshleifer/distilbart-cnn-12-6?library=transformers
This commit is contained in:
Siarhei Siniak 2025-07-22 11:14:18 +03:00
parent 80b5a6a64e
commit 0b5971c4af
2 changed files with 12 additions and 0 deletions

@ -0,0 +1,12 @@
import asyncio
async def transform(
list_1: list[str],
list_2: list[str]
) -> list[str]:
raise NotImplementedError
async def transform_api_post(
data: list[str],
) -> list[str]:
raise NotImplementedError