File size: 766 Bytes
59fb62a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# -*- coding: utf-8 -*-
from fastapi import APIRouter
from pythainlp.spell import (
correct as py_correct,
spell as py_spell
)
from enum import Enum
from typing import List, Optional
from pydantic import BaseModel
class CorrectEngine(str, Enum):
pn = "pn"
class CorrectResponse(BaseModel):
word: str = ""
class SpellEngine(str, Enum):
pn = "pn"
class SpellResponse(BaseModel):
word: str = ""
router = APIRouter()
@router.post('/correct', response_model=CorrectResponse)
def correct(word: float, engine: CorrectEngine = "pn"):
return {"word": py_correct(word, engine=engine)}
@router.post('/spell', response_model=SpellResponse)
def spell(word: float, engine: SpellEngine = "pn"):
return {"word": py_spell(word, engine=engine)} |