Skip to content
This repository has been archived by the owner on Mar 20, 2021. It is now read-only.

TartuNLP/sauron

Repository files navigation

sauron

Open-source Neural MT server API

Usage:

Request parameters :

  • auth
  • odomain
  • olang

POST https://api.tartunlp.ai/v1.2/translate?auth=public&olang=eng&odomain=auto
BODY (JSON):

{
   "text":"Tere"
}

RESPONSE (JSON):

{
    "status":"done",
    "input":"Tere",
    "result":"Hello"
}

Translation (multiple sentences):

POST https://api.tartunlp.ai/v1.2/translate?auth=public&olang=eng&odomain=auto
BODY (JSON):

    {
       "text":["Tere", "Nägemist"]
    }

RESPONSE (JSON):

    {
        "status":"done",
        "input":["Tere", "Nägemist"],
        "result":["Hello", "Bye"]
    }

Get help on domain settings:

GET/ POST https://api.tartunlp.ai/v1.2/translate/support?auth=public

{"domain":"general","options":[{"odomain":"fml","name":"Formal","lang":["est","lav","lit","ger","eng","fin","rus"]},{"odomain":"inf","name":"Informal","lang":["est","lav","lit","ger","eng","fin","rus"]},{"odomain":"auto","name":"Auto","lang":["est","lav","lit","ger","eng","fin","rus"]}]}

Errors

You may also receieve a message. For example when incorrect usage is found:

POST https://api.tartunlp.ai/v1.2/translate?auth=public

{
    "message": "olang not found in request"
}

Requirements:

$ pip install -r requirements.txt

Configuration:

API requires two configuration files for execution:

config.json contains a list of domains with their names and a corresponding list of translation engines that share the same set of supported factors like output style and language. Each of these workers has its name and two settings: IP address and port.

dev.ini specifies a mapping from the authentification key to the domain in which translation is expected. In the example, the second line says that users with authentification key public will be directed to the general domain.

Examples of config.json and dev.ini are provided in this repository.

Running from command line:

Unix Bash
$ export FLASK_APP=sauron
$ flask run

Windows CMD
> set FLASK_APP=sauron
> flask run

Deploying:

One way to deploy is gunicorn and GNU screen session. To support start, stop and restart commands one can add these lines to the .bash_aliases:

alias sauron-start='cd project/directory && screen -S sauron sudo gunicorn [OPTIONS] && cd ~'
alias sauron-stop='ps aux |grep gunicorn |grep sauron | awk '"'"'{ print $2 }'"'"' | sudo xargs kill -s QUIT'
alias sauron-restart='sauron-stop && sauron-start'

About

Open-source Neural MT server API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages