Source code for pharia_skill.csi.language

from enum import Enum

# We use pydantic.dataclasses to get type validation.
# See the docstring of `csi` module for more information on the why.
from pydantic.dataclasses import dataclass


[docs] class Language(str, Enum): """ISO 639-3 language.""" Afrikaans = "afr" Arabic = "ara" Azerbaijani = "aze" Belarusian = "bel" Bengali = "ben" Bosnian = "bos" Bulgarian = "bul" Catalan = "cat" Czech = "ces" Welsh = "cym" Danish = "dan" German = "deu" Greek = "ell" English = "eng" Esperanto = "epo" Estonian = "est" Basque = "eus" Persian = "fas" Finnish = "fin" French = "fra" Irish = "gle" Gujarati = "guj" Hebrew = "heb" Hindi = "hin" Croatian = "hrv" Hungarian = "hun" Armenian = "hye" Indonesian = "ind" Icelandic = "isl" Italian = "ita" Japanese = "jpn" Georgian = "kat" Kazakh = "kaz" Korean = "kor" Latin = "lat" Latvian = "lav" Lithuanian = "lit" Ganda = "lug" Marathi = "mar" Macedonian = "mkd" Mongolian = "mon" Maori = "mri" Malay = "msa" Dutch = "nld" NorwegianNynorsk = "nno" NorwegianBokmÄl = "nob" Punjabi = "pan" Polish = "pol" Portuguese = "por" Romanian = "ron" Russian = "rus" Slovak = "slk" Slovene = "slv" Shona = "sna" Somali = "som" Sotho = "sot" Spanish = "spa" Serbian = "srp" Albanian = "sqi" Swahili = "swa" Swedish = "swe" Tamil = "tam" Telugu = "tel" Tagalog = "tgl" Thai = "tha" Tswana = "tsn" Tsonga = "tso" Turkish = "tur" Ukrainian = "ukr" Urdu = "urd" Vietnamese = "vie" Xhosa = "xho" Yoruba = "yor" Chinese = "zho" Zulu = "zul"
[docs] @dataclass class SelectLanguageRequest: """ Select the detected language for the provided input based on the list of possible languages. If no language matches, None is returned. Attributes: text (str, required): Text input languages (list[Language], required): All languages that should be considered during detection. """ text: str languages: list[Language]