Spanish support language
# support
e
Hello, i love the product and how easy is to create an assistant and even more easy to connect it with twilio, but when i test in Spanish language is not so accurate, i have changed models, voice providers but is not working fine, what do you recommend?
n
Known bug, use the API for now.
Copy code
curl -X POST https://api.vapi.ai/assistant \
     -H "Authorization: YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{
          "name": "French",
          "voice": {
            "model": "eleven_multilingual_v2",
            "voiceId": "sarah",
            "provider": "11labs"
          },
          "model": {
            "model": "gpt-4",
            "messages": [
              {
                "role": "system",
                "content": "YOUR_SYSTEM_PROMPT"
              }
            ],
            "provider": "openai",
          },
          "firstMessage": "YOUR_FIRST_MESSAGE",
          "transcriber": {
            "language": "fr",
            "provider": "deepgram"
          }
        }'