Topics

Overview

modelTypeConfiguration

Example Request

curl --location --request POST 'https://api.marsview.ai/cb/v1/conversation/compute' \
--header 'Content-Type: application/json' \
--header "Authorization: {{Insert Auth Token}}" \
--data-raw '{
        "txnId": "{{Insert txn ID}}",
        "enableModels":[
            {
            "modelType":"speech_to_text",
                "modelConfig":{
                    "automatic_punctuation" : true,
                    "custom_vocabulary":["Marsview", "Communication"],
                    "speaker_seperation":{
                        "num_speakers":2
                    },
                    "enableKeywords":true,
                    "enableTopics":false
                    }
            },
            {
            "modelType":"meeting_topics"
            }
            
        ]
}'

Example Response

"data": {
    "topicsData": [
            "clear safety situations",
            "loss",
            "biggest weakness",
            "qualified applicants",
            "questions",
            "biggest strengths",
            "nicholas state university",
            "next question",
            "hard worker",
            "pool certifications",
            "good evening teresa",
            "touch goodbye goodbye",
            "good very good job",
            "sporting events",
            "quality time",
            "good answer next question",
            "good question",
    ]
}

Response Object

Last updated