We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285d73b commit 2dad65eCopy full SHA for 2dad65e
main.py
@@ -1,7 +1,7 @@
1
# -*- coding: utf-8 -*-
2
from fastapi import Depends, FastAPI, Header, HTTPException
3
from fastapi.middleware.cors import CORSMiddleware
4
-from routers import tag, tokenize
+from routers import tag, tokenize, word_vector
5
import pythainlp
6
7
DESC_TEXT = "Pythainlp API"
@@ -28,3 +28,5 @@ def index():
28
29
app.include_router(tag.router, prefix="/tag", tags=["Tag"])
30
app.include_router(tokenize.router, prefix="/tokenize", tags=["Tokenize"])
31
+app.include_router(word_vector.router,
32
+ prefix="/word-vector", tags=["Word Vector"])
0 commit comments