Identify Language

What is it?

  • NeuralSeek provides a service that would analyze and identify the language of a given text.

Why is it important?

  • Any application that would need to understand which language a given text is can now use NeuralSeek to do it, rather than relying on other external services.

How does it work?

  • Language identification is provided as REST API, and can be tested on NeuralSeek API documentation. Message payload is in text/plain format, and contains text in certain languages. An example message would look something like this:
이 언어는 어떤 언어입니까?
  • NeuralSeek would then identify what language this is in, and returns the language code and the confidence score:
[
    {
        "language": "ko",
        "confidence": 0.95
    }
]

Intent Categorization

What is it?

  • NeuralSeek can automatically categorize user input and questions into categories. These categories can be anything - products, organizations, departments, etc. Users can set up categories on the Configure Tab, by entering category names and descriptions. These will then be used to match user input into categories. User inputs that do not match any category, or that too closely match multiple categories will be placed in a default category called "Other". This default category cannot be modified.

Why is it important?

  • Categorization is very useful at scaling NeuralSeek within an organization. By grouping intents into categories it can make things much easier for subject matter experts to quickly take action on their specific area of content. Categorization can be useful even outside the context of answering user questions - for example, in routing customer questions to the correct department or live agent. Categorization can be called directly via the API.

How does it work?

  • User input is scored and bucketed based on the category title and description, and based on intents that have been manually moved into categories (self-learning). Once categorization is enabled, the Curate and Analytics screens will change to show groupings around categories. Categorization is not retroactive - meaning if you define a new category, we will not automatically re-run all old user input against the new categories. Users may move intents into categories manually through the Curate tab or the CSV download/edit features. The edits made will be used to train the system for future categorization events.

Language Translation

What is it?

  • NeuralSeek provides language translation that will let users call it to translate languages into different languages.

Why is it important?

  • Any application that would need to translate a given text to another language can now use NeuralSeek to do it, rather than relying on other external translation services.

How does it work?

  • Translation is provided as REST API, and can be tested on NeuralSeek API documentation.
  • Message payload is in JSON format, and contains an array of text in certain language(s). Another attribute is target which specifies the target language the translation needs to be performed in. An example message would look something like this:
{
    "text": [
    "NeuralSeek introduced several new features in July 2023, including streaming responses for web use cases, enhanced cross-lingual support, curate to CSV/upload curated QA from CSV, improved semantic match analysis, updated IBM WatsonX model compatibility, and AWS Lex round-trip monitoring."
    ],
    "target": "ko"
},

For more details on what language codes are supported, please refer to Multi Language Support.

NeuralSeek would then translate the given text into the target language ko which is Korean:

{
    "word_count": 39,
    "character_count": 289,
    "translations": [
        "NeuralSeek은 2023년 7월에 웹 사용 사례를 위한 스트리밍 응답, 향상된 교차 언어 지원, CSV에 대한 선별/선별 QA 업로드, 개선된 의미 일치 분석, 업데이트된 IBM WatsonX 모델 호환성 및 AWS Lex 왕복 모니터링과 같은 여러 가지 새로운 기능을 도입했습니다."
    ],
    "detected_language": "en",
    "detected_language_confidence": 0.9999967787054185
}

You can also provide texts in different languages that can all be translated into the target language:

{
    "text": [
    "soy un chico.",
    "나는 소년입니다.",
    "私は男の子です."
    ],
    "target": "en"
}

Which will be translated into en which is English:

        {
        "word_count": 6,
        "character_count": 30,
        "translations": [
        "I am a boy.",
        "I am a boy.",
        "I am a boy."
        ],
        "detected_language": "es",
        "detected_language_confidence": 0.95
        }

Multi Language Support

What is it?

  • NeuralSeek has several different language options available for understanding questions and delivering answers. These include English, Spanish, Portuguese, French, German, Italian, Arabic, Korean, Chinese, Czech, Dutch, Indonesian, Japanese, and more. These can be adjusted on the “Configure” section of the NeuralSeek console, or on the “Seek” endpoint. Please see the below table for the full list of supported languages.

Why is it important?

  • Instead of having to train your virtual agents to understand various different languages, your question can be automatically converted into the response in the language of your choice.

How does it work?

  • NeuralSeek will try to determine if the user is asking a question in a certain language (e.g. Spanish), and will try to convert the responses into the language that the user asked without any additional set ups.

Supported Languages

Language Lang code
English en
Match Input xx
Arabic ar
Basque eu
Bengali bn
Bosnian bs
Bulgarian bg
Catalan ca
Chinese (Simplified) zh-cn
Chinese (Traditional) zh-tw
Croatian hr
Czech cs
Danish da
Dutch nl
Estonian et
Finnish fi
French fr
German de
Greek el
Gujarati gu
Hebrew he
Hindi hi
Hungarian hu
Irish ga
Indonesian id
Italian it
Japanese ja
Kannada kn
Korean ko
Latvian lv
Lithuanian lt
Malay ms
Malayalam ml
Maltese mt
Marathi mr
Montenegrin cnr
Nepali ne
Norwegian Bokmål nb
Polish pl
Portuguese pt-br
Punjabi pa
Romanian ro
Russian ru
Serbian sr
Sinhala si
Slovak sk
Slovenian sl
Spanish es
Swedish sv
Tamil ta
Telugu te
Thai th
Turkish tr
Ukrainian uk
Urdu ur
Vietnamese vi
Welsh cy

Match Input Feature: NeuralSeek can understand and support conversations that are initiated in languages other than the ones listed through the Match Input Feature. On the “Seek” endpoint, click the dropdown for language navigation and click "Match Input".

Specifying a Language

If you would like to specify a certain target language that you want NeuralSeek to generate answers into, you can do so by specifying a language code (e.g. es) in the request when you are invoking Seek.

lang selection

The same can be achieved when you are invoking Seek using REST API. You can specify the language under the options > language.


Ⓒ 2024 NeuralSeek, all rights reserved.