"use server"; import { AsyncRes } from "@/lib/types"; import { NLP } from "sortug-ai"; // import db from "../lib/db"; // export async function textAction( // text: string, // lang: string, // ): AsyncRes { // const res = await NLP.Spacy.run(text, lang); // return res; // } // export async function ocrAction(file: File): AsyncRes { // const res = await NLP.ocr(file); // return res; // }