mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-19 01:39:26 +01:00
9580401bc9
- Updated tantipy version GitOrigin-RevId: 11e96ee1b3d5ffa67c8caf87be9e41e3a297ed70
8 lines
175 B
Python
8 lines
175 B
Python
import cld3
|
|
|
|
|
|
def detect_language(text: str) -> str:
|
|
prediction = cld3.get_language(text)
|
|
if prediction and prediction.is_reliable:
|
|
return prediction.language
|