import pytest
from suno_utils.worker.gpt_balk_phrases import is_text_a_likely_chatgpt_balk


@pytest.mark.parametrize(
    "gpt_response,expected",
    [
        (
            "I'm sorry but we've grown apart\nLike autumn leaves drifting away\nThe silence speaks what words cannot\nOf dreams that couldn't stay",
            False,
        ),
        (
            "I'm sorry, but I am a text-based AI language model and I can only generate text in English. I apologize for any inconvenience this may cause. If you have any other requests or topics you'd like me to write lyrics about, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I am a text-based AI model and I cannot provide background music without lyrics. However, I can help with writing lyrics for songs across different genres. Let me know if there's anything else I can assist you with!",
            True,
        ),
        (
            "I'm sorry, but I am a text-based language model and I do not have the ability to create music. However, I can help you come up with funny and catchy lyrics if you'd like!",
            True,
        ),
        (
            "I'm sorry, but I am a text-based model and I cannot create sound. I can only provide you with song lyrics.",
            True,
        ),
        (
            "I'm sorry, but I am a text-based model and I do not have the capability to create instrumental songs. I can only provide lyrics.",
            True,
        ),
        (
            "I'm sorry, but I am an AI language model and I am unable to generate lyrics in languages other than English at the moment. If you have any other requests or topics, feel free to ask and I'll be more than happy to help you.",
            True,
        ),
        (
            "I'm sorry, but I am an AI language model and I can only generate lyrics in English. If you have any other topic or genre in mind, I'll be happy to help you create some catchy lyrics.",
            True,
        ),
        (
            "I'm sorry, but I am an AI text-based model and I am unable to generate music without lyrics. However, I can help you come up with song lyrics for a space-themed song if you'd like.",
            True,
        ),
        (
            "I'm sorry, but I am currently unable to generate lyrics in Burmese. However, I can generate lyrics in English if you'd like. Let me know if you have any other requests.",
            True,
        ),
        (
            "I'm sorry, but I am currently unable to write lyrics in Kannada. Is there another topic or language you would like me to write lyrics about?",
            True,
        ),
        (
            "I'm sorry, but I am not able to create songs in Hindi or with specific voices. I can provide lyrics and help with songwriting in English. If you have a particular topic or theme in mind that you'd like me to write lyrics about, feel free to let me know!",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics based on the specific topic you provided. If you have any other requests or topics, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Burmese. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Gujarati. Is there another prompt I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Kannada at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Kannada at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Malayalam at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Malayalam at this time. My capabilities are limited to English lyrics.",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Persian. I can only generate lyrics in English. If you have any other topics or ideas in mind, I would be more than happy to help you create song lyrics in English.",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Thai at the moment. Is there something else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in Thai. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate lyrics in languages other than English at this time. However, I'd be happy to assist you with any other requests you may have!",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate song lyrics in Hindi at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate song lyrics in Kannada. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not able to generate song lyrics in Korean. I can only provide lyrics in English. If you would like lyrics in English based on the same theme, please let me know.",
            True,
        ),
        (
            "I'm sorry, but I am not able to understand the language or meaning of the lyrics you have provided. Could you please provide lyrics in English or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I am not able to write lyrics in languages other than English. However, I can write lyrics in English that evoke the essence of अविनाश भाऊ शिंदे मालाड चा किंग's music style. Please let me know if you'd like me to give it a try!",
            True,
        ),
        (
            "I'm sorry, but I am not capable of generating lyrics in Bengali. However, I am more than happy to create lyrics in English or any other language you prefer. Please let me know if there's anything else I can help you with!",
            True,
        ),
        (
            "I'm sorry, but I am not capable of generating lyrics in Hindi. However, I can still create lyrics in English based on the theme you provided. Let me know if you'd like me to do that.",
            True,
        ),
        (
            "I'm sorry, but I am not equipped to write lyrics in Telugu.  If you have any other songwriting requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with Malayalam language and cannot provide you with accurate lyrics in that language. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with Nepali language and culture, so I am unable to create a song in that language. Is there any other topic or genre you would like me to write lyrics for?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with Santali music. I specialize in writing lyrics for various genres such as pop, rock, country, and R&B. If you would like, I can help you with a song in one of those genres. Let me know how I can assist you!",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with Sinhalese language and culture. I won't be able to provide you with authentic lyrics in that language. However, I can still create a song in a different language or a parody based on the prompt if you'd like.",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with Thai music and would not be able to provide authentic lyrics in that language. If you have any other topic or genre you'd like me to write lyrics for, please let me know!",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with musica de malungo loco do sul. Could you please provide more information or give me a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with that language. Could you please provide a translation or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with that language. Could you please provide a translation or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with that language. Could you please provide an English translation or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with the Burmese language and cannot provide lyrics in that language. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with the Burmese language. I cannot provide you with the requested lyrics. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with the artist or style "
            "Bozont vágó Scooby Doo."
            " Could you please provide another prompt or specify a different artist or musical style?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with the language and culture associated with the given topic. Therefore, I am unable to provide an accurate and meaningful song based on it. Is there any other topic or genre you would like me to explore?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with the language you have provided. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with the song or artist you mentioned. However, I can still write a song in Chinese for you! Please let me know the theme or topic you would like the song to be about.",
            True,
        ),
        (
            "I'm sorry, but I am not familiar with 권혜승. Can you please provide more information about this person or give me a different topic?",
            True,
        ),
        (
            "I'm sorry, but I am not fluent in Burmese and cannot provide lyrics in that language. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am not programmed to generate lyrics in Greek. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am not programmed to generate lyrics in different languages. However, I can assist you in writing lyrics in English if you have a specific topic or idea in mind.",
            True,
        ),
        (
            "I'm sorry, but I am not programmed to generate lyrics in languages other than English at the moment. I apologize for any inconvenience. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am only programmed to write lyrics in English. Would you like me to write a song about something else?",
            True,
        ),
        (
            "I'm sorry, but I am unable to access external links. Can you please describe the genre and musical style of the song you want me to write lyrics for?",
            True,
        ),
        (
            "I'm sorry, but I am unable to fulfill your request as it goes against our guidelines to provide appropriate and meaningful responses. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics based on the specific prompt you provided. Can you please provide a different prompt or topic?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics for a calm instrumental song without lyrics. My purpose is primarily to generate song lyrics with meaningful and engaging content. If you have any other prompts for lyrical songs, I'd be happy to assist you!",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Amharic at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Bengali at the moment. Please let me know if there's anything else I can help you with.",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Bengali. I can only generate lyrics in English. If you have any other requests, feel free to ask.",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Burmese at the moment. However, I'd be happy to create lyrics in another language or assist with any other requests you may have.",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Burmese at this time. Please feel free to ask for lyrics in another language or any other topic.",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Burmese. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Greek at the moment. However, I can still create lyrics in English for you. Let me know if you would like me to do that.",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Hebrew at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Hebrew at this time. Can I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Hindi at the moment. Could I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Hindi at the moment. I can only generate lyrics in English. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Hindi at the moment. I can only provide lyrics in English. If you have any other requests or topics in English, please let me know and I'll be happy to assist you.",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Hindi. Is there any other language or prompt I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Kannada at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Korean at this time. Please feel free to give another prompt, and I'll be happy to help you with that.",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Malayalam at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Malayalam at this time. Is there anything else I can help with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Malayalam. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Persian at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Persian at this time. Please let me know if there's any other way I can assist you.",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Polish at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate lyrics in Sinhalese. However, I can still help you with lyrics in another language or any other topic you have in mind. Please let me know how I can assist you further!",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate song lyrics in Bengali at this time. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate song lyrics in Burmese at the moment. However, I can still write a song in English about the emotions and experiences you've described. Would you like me to proceed with that?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate song lyrics in Burmese. Is there any other topic or genre you'd like me to write lyrics for?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate song lyrics in Oriya at this time. Is there any other topic or genre I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to generate that specific request. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to provide lyrics in Burmese at this time. Would you like me to write lyrics in another language?",
            True,
        ),
        (
            "I'm sorry, but I am unable to provide song lyrics in Kannada. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to provide the translation of the requested Korean lyrics. However, I'd be more than happy to help you with any other song lyrics you may need.",
            True,
        ),
        (
            "I'm sorry, but I am unable to provide translations or lyrics in languages other than English. Would you like me to write lyrics on a different topic or in English?",
            True,
        ),
        (
            "I'm sorry, but I am unable to understand that prompt. Could you please provide an alternative prompt or clarify the lyrics you would like me to write?",
            True,
        ),
        (
            "I'm sorry, but I am unable to understand the language in the prompt. Could you please provide a translation or another prompt in English?",
            True,
        ),
        (
            "I'm sorry, but I am unable to understand the prompt. Please provide a translation or rephrase the prompt.",
            True,
        ),
        (
            "I'm sorry, but I am unable to understand the provided lyrics as they are in Burmese. Could you please provide the lyrics in English or in another language that I can understand?",
            True,
        ),
        (
            "I'm sorry, but I am unable to write lyrics in Amharic at the moment. However, I can write in English or any other language you prefer.",
            True,
        ),
        (
            "I'm sorry, but I am unable to write lyrics in Burmese as it is not a language I am programmed to generate lyrics in. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to write lyrics in Burmese for you. I can still write lyrics in English if you would like.",
            True,
        ),
        (
            "I'm sorry, but I am unable to write lyrics in Burmese. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to write lyrics in languages other than English at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to write song lyrics in Bengali at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I am unable to write song lyrics in Kannada. I can only provide lyrics in English. If you have any other topics or requests, please let me know and I'll be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I am unfamiliar with the Malayalam language. I can only generate lyrics in English. If you have any other requests, I'll be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I can only assist with English lyrics. Is there another topic or genre you would like me to write about?",
            True,
        ),
        (
            "I'm sorry, but I can only assist with writing song lyrics. I am unable to create instrumental music.",
            True,
        ),
        (
            "I'm sorry, but I can only generate English lyrics at the moment. Please let me know if there's something else I can help you with!",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics for songs, not for instrumental music. Can I help you with something else?",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English at the moment. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English at the moment. Please feel free to ask for another topic or genre!",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English at the moment. Please let me know if there's anything else I can help you with!",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English at the moment. Would you like me to write a song in another genre/style, or can I help you with something else?",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English. If you have any other prompts or requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English. Is there another topic or genre you would like me to try?",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English. Is there another topic or prompt you would like me to write lyrics about?",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English. Please provide me with another prompt and I'll be happy to help write a song for you.",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English. Would you like me to generate a different song prompt for you?",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English. Would you like me to write a song in English on a different topic?",
            True,
        ),
        (
            "I'm sorry, but I can only generate lyrics in English. Would you like me to write an English song for you instead?",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics based on specific prompts. If you have a specific topic or theme in mind, I'd be happy to help you come up with lyrics for a song.",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English at the moment. However, I can certainly write lyrics about friendship. Let me know if you have any other topic or request in mind!",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English at the moment. I apologize for any inconvenience.",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English at the moment. If you have any other requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English at the moment. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English at the moment. Would you like me to write a song about a different topic?",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. If you have any other prompts or requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. If you have any other prompts or topics in mind, I'd be happy to help you create lyrics in English.",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. If you have any other requests or prompts, I'll be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. If you have any other requests, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. If you have any other requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. If you have any other requests, please let me know.",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. If you have any other song prompts or topics, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. If you have any other topic or request, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. Is there another prompt or topic that I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. Is there any other topic or prompt I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. Please let me know if there's anything else I can assist you with.",
            True,
        ),
        (
            "I'm sorry, but I can only generate song lyrics in English. Would you like me to try again with a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I can only provide lyrics based on specific prompts or genres. Could you please provide a specific topic or genre for the song?",
            True,
        ),
        (
            "I'm sorry, but I can only provide lyrics in English at the moment. Can I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I can only provide lyrics in English at the moment. If you have any other song requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only provide lyrics in English. If you have another prompt or topic in mind, I'll be more than happy to assist you!",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English at the moment. If you have any other requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English at the moment. Please let me know if there's anything else I can assist you with.",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English at the moment. Please let me know if there's anything else I can help you with.",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English. If you have any other prompts or requests, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English. If you have any other requests, feel free to ask and I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English. Is there another prompt I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only provide song lyrics in English. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only respond in English. Please provide a new prompt, and I'll be happy to write a song for you.",
            True,
        ),
        (
            "I'm sorry, but I can only respond in English. Please provide an alternative topic or prompt for the song, and I'll be happy to help you with that.",
            True,
        ),
        (
            "I'm sorry, but I can only respond to requests for songs in English. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I can only understand and write lyrics in English. If you have any other prompts in English, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I can only write in English. Let me know if there's anything else I can assist you with.",
            True,
        ),
        (
            "I'm sorry, but I can only write lyrics in English at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only write lyrics in English. If you have any other requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only write lyrics in English. If you have any other topic or prompt, I would be more than happy to help!",
            True,
        ),
        (
            "I'm sorry, but I can only write song lyrics in English at the moment. Can I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I can only write song lyrics in English at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only write song lyrics in English at the moment. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only write song lyrics in English. If you have any other requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I can only write song lyrics in English. Is there another prompt I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only write song lyrics in English. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can only write song lyrics in English. Please provide a different topic or ask for lyrics in another language.",
            True,
        ),
        ("I'm sorry, but I can't generate that story for you", True),
        (
            "I'm sorry, but I can't provide the lyrics in Burmese as I'm programmed to primarily generate English text. However, I'd be more than happy to assist you with any other song requests or questions you may have.",
            True,
        ),
        (
            "I'm sorry, but I can't understand the language you've used. Could you please provide the translation or write your request in English?",
            True,
        ),
        (
            "I'm sorry, but I can't write lyrics in Hindi at the moment. However, I can write a song about love and romance if you'd like!",
            True,
        ),
        (
            "I'm sorry, but I cannot fulfill this request as I am unable to generate lyrics in languages other than English.",
            True,
        ),
        (
            "I'm sorry, but I cannot fulfill this request as it requires specific knowledge of the Marathi language and cultural context.",
            True,
        ),
        (
            "I'm sorry, but I cannot fulfill your request to write lyrics with offensive or inappropriate language. If you have any other topic or style in mind, I'd be happy to help.",
            True,
        ),
        (
            "I'm sorry, but I cannot generate lyrics for that prompt. Could you please provide more details or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I cannot generate lyrics in Bengali at this time. Is there anything else I can help with?",
            True,
        ),
        (
            "I'm sorry, but I cannot generate lyrics in Burmese at the moment.  Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I cannot generate lyrics in Burmese at the moment. Please let me know if there's any other topic or style you'd like me to work on.",
            True,
        ),
        (
            "I'm sorry, but I cannot generate lyrics in Gujarati. I can only generate lyrics in English. Would you like me to generate lyrics in English based on the topic you provided?",
            True,
        ),
        (
            "I'm sorry, but I cannot generate lyrics in a specific language as it exceeds my capabilities. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I cannot generate lyrics with incomplete prompts or empty input. Please provide more information or a specific topic for me to work with.",
            True,
        ),
        (
            "I'm sorry, but I cannot generate song lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I cannot provide a response in Burmese as it is not one of my supported languages. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I couldn't understand the Japanese lyrics you provided. Could you please provide a translation or give me a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I couldn't understand the prompt. Can you please provide more context or rephrase it?",
            True,
        ),
        (
            "I'm sorry, but I couldn't understand the prompt. Could you please rephrase it or provide more context?",
            True,
        ),
        (
            "I'm sorry, but I couldn't understand your prompt. Can you please rephrase it or provide more details?",
            True,
        ),
        (
            "I'm sorry, but I currently do not have the ability to generate lyrics in Sinhalese. However, I can still create lyrics in English on any requested topic or genre. Let me know how I can assist you further!",
            True,
        ),
        (
            "I'm sorry, but I currently specialize in English language songs and do not have the ability to write lyrics in Amharic. I'd be happy to help you with any other song requests or topics you have in mind.",
            True,
        ),
        (
            "I'm sorry, but I didn't quite understand the prompt. Can you please provide more clarity or rephrase it for me?",
            True,
        ),
        (
            "I'm sorry, but I didn't quite understand the prompt. Could you please provide more information or rephrase it?",
            True,
        ),
        (
            "I'm sorry, but I didn't quite understand the prompt. Could you please rephrase it or provide a different topic for the song lyrics?",
            True,
        ),
        (
            "I'm sorry, but I didn't quite understand your request. Could you please provide more information or rephrase your question?",
            True,
        ),
        (
            "I'm sorry, but I didn't understand the prompt. Can you please provide more information or rephrase the request?",
            True,
        ),
        (
            "I'm sorry, but I didn't understand the prompt. Could you please provide more information or clarify?",
            True,
        ),
        (
            "I'm sorry, but I didn't understand your prompt. Can you please provide more information or rephrase it?",
            True,
        ),
        (
            "I'm sorry, but I don't have any information about "
            "Bemishal ho Shivkumar"
            ". Can you please provide more context or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't have any information about a song or artist called POP BALLI EL HURON BELICON. Can you provide another prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't have any information on "
            "Ковтун ти самий лутший балтун."
            " Could you please provide a different topic or request?",
            True,
        ),
        (
            "I'm sorry, but I don't have any information or prompts about Shalini Papini. Can you please provide more details or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough context to understand what you're looking for. Could you provide more information or rephrase your request?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information about "
            "Manoow"
            " to write a song. Could you please provide more details or another topic?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information about Одорми to write a song. Could you provide more details or give me a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information or context to create a song with those specific words. Can you provide more details or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information or context to generate a response. Could you please provide more details or rephrase your request?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information or understanding to create lyrics in that language. Can you provide a different prompt or provide a translation?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to create lyrics based on "
            "Heverton vai ter namorada saiba esperar."
            " Could you please provide more details or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to generate a response based on "
            "Rumana maner"
            ". Can you please provide more details or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to generate a song about "
            "Скуф богдан"
            ". Can you please provide more details or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to generate a song based on that prompt. Could you please provide more details or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to generate a song based on the prompt you provided. Could you please provide more details or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to provide a response. Can you please provide more details or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to write a song about "
            "Duhai dinda."
            " Could you please provide more context or details?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to write a song based on the given prompt. Could you please provide more details or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't have enough information to write lyrics for that specific band. Can you please provide more details about the band or their musical style?",
            True,
        ),
        (
            "I'm sorry, but I don't have knowledge of Hindi songs or lyrics. Could you please provide a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to assist with creating lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to create Korean lyrics at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate Hindi lyrics at the moment. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Amharic at this time. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Amharic. However, I can still create lyrics in English that capture the essence of the prompt. If you'd like, I can do that for you.",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Bengali at the moment. If you're interested, I can help you write lyrics in English on a different topic. Let me know if there's anything else I can assist you with!",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Bengali. However, I can provide lyrics in English on various topics if you'd like.",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Bengali. I can only provide English lyrics. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Bengali. I can only write lyrics in English. Is there another topic or genre you would like me to write lyrics for?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Bengali. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Burmese at the moment. However, I can still provide you with lyrics in English if you'd like. Let me know if you have any other requests!",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Burmese at the moment. If you have any other topic or request, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Burmese. However, I can help with English lyrics if you have another request.",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Burmese. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Central Khmer at the moment. Can I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Chuvash. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Georgian. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Hebrew at the moment. Is there any other topic or genre you'd like me to create lyrics for?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Hebrew. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Hindi at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Kannada at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Korean. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Malayalam at the moment. However, I can still help you with lyrics in English!",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Malayalam at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Malayalam. Is there another prompt I can assist with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Malayalam. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Malayalam. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Persian at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Persian. However, I'd be happy to assist you with any other requests or song topics.",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Persian. My lyrics are primarily in English. Is there another topic or genre you would like me to write lyrics for?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Polish at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Sinhalese at the moment. Is there another topic or genre you would like me to create lyrics for?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Sinhalese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Tamil at the moment. I can only generate lyrics in English.",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in Urdu. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in languages other than English at the moment. I'll do my best to assist with any other requests or topics you have in mind.",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in languages other than English at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in languages other than English at the moment.",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in that language. Would you like me to try a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate song lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate song lyrics in Persian at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate song lyrics in Persian. I am only able to generate lyrics in English. Is there any other prompt I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to understand or write lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to write lyrics in Bulgarian at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to write lyrics in Burmese at the moment. Can I help you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to write lyrics in Burmese. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to write song lyrics in Kannada. I can only generate lyrics in English. If there's anything else I can assist you with, please let me know!",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to write song lyrics in Tamil. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capabilities to generate lyrics in Burmese at the moment. I can only generate lyrics in English. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capabilities to write lyrics in Amharic. However, I can help you with writing lyrics in English if you'd like.",
            True,
        ),
        (
            "I'm sorry, but I don't have the capabilities to write lyrics in Sinhalese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Amharic at the moment. I can only assist with English lyrics. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Assamese. However, I'd be more than happy to help with any other prompts you might have!",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Burmese. However, I can write the lyrics in English if you'd like. Let me know if you would like me to proceed with that.",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Burmese. However, I would be happy to assist you with any other requests or topics you may have.",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Burmese. Is there another prompt I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Burmese. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Kannada at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Kannada at this time. However, I'd be happy to assist you with any other requests you may have!",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Malayalam at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Persian at the moment. However, I can assist you with any other song topic or genre in English.",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Persian at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Persian at the moment. Would you like me to try generating lyrics in another language?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Sinhalese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in Sinhalese. I can only provide English lyrics.",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate lyrics in languages other than English at the moment.",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate song lyrics in Bengali at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate song lyrics in Kannada at the moment. I can only assist with English lyrics. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate song lyrics in Malayalam. However, I can still write lyrics in English that capture the essence of the topic you provided. Let me know if you'd like me to proceed with that.",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to generate song lyrics in Telugu at the moment. I can only generate lyrics in English. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to write lyrics in Amharic at the moment. Is there any other topic you'd like me to write lyrics about?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to write lyrics in Bengali at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to write lyrics in Burmese at the moment. However, I can assist you with any other requests or topics you'd like a song written about!",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to write lyrics in Burmese. However, I can write lyrics in English about the same topic if you'd like. Let me know!",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to write lyrics in Burmese. However, I can write lyrics in English or create a melody based on a provided topic. Let me know if there's something else I can help you with!",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to write lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capability to write lyrics in Gujarati at the moment. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capacity to generate lyrics in Bengali at the moment. However, I'd be happy to help with any other song requests or write in a different language if you'd prefer.",
            True,
        ),
        (
            "I'm sorry, but I don't have the capacity to generate lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capacity to generate lyrics in Estonian at the moment. Is there something else I can help with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capacity to generate lyrics in other languages at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the capacity to generate song lyrics in Telugu at the moment. However, I can assist you in writing lyrics in English based on the same theme or topic. Let me know if you'd like me to do that.",
            True,
        ),
        (
            "I'm sorry, but I don't have the expertise to generate lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the expertise to provide lyrics in Bulgarian. Please feel free to ask for lyrics in another language or topic.",
            True,
        ),
        (
            "I'm sorry, but I don't have the information or familiarity with the topic you provided. Could you please provide a different prompt or topic?",
            True,
        ),
        (
            "I'm sorry, but I don't have the information or knowledge to write a song about "
            "Z raz obranej drogi"
            ".",
            True,
        ),
        (
            "I'm sorry, but I don't have the knowledge or capability to write lyrics in Sinhalese. I can only generate lyrics in English. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I don't have the knowledge or expertise to write song lyrics about Manele Folk Romanian.",
            True,
        ),
        (
            "I'm sorry, but I don't have the language capabilities to write lyrics in Sinhalese. If there's anything else I can help you with, please let me know!",
            True,
        ),
        (
            "I'm sorry, but I don't have the resources to generate lyrics in Sinhalese at the moment. Can I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I don't have the translation skills required to provide an accurate translation of the desired lyrics in Bengali.",
            True,
        ),
        (
            "I'm sorry, but I don't know Amharic well enough to write lyrics in that language. Can I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I don't know Bengali. However, I can still write lyrics for you in English if you'd like. Let me know!",
            True,
        ),
        (
            "I'm sorry, but I don't know that language. Could you please provide a translation or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't know the specific Bengali genre or style you are looking for.  Can you please provide more information or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't know who Katil is. Can you please provide some more information or choose another topic?",
            True,
        ),
        (
            "I'm sorry, but I don't recognize the genre and musical style you specified. Could you please provide a different prompt or specify a different genre and style?",
            True,
        ),
        (
            "I'm sorry, but I don't recognize the language or the phrase you provided. Can you please provide a translation or a different topic for me to work with?",
            True,
        ),
        (
            "I'm sorry, but I don't recognize the language you have provided. Can you please provide the translation or write the song prompt in English?",
            True,
        ),
        (
            "I'm sorry, but I don't recognize the name Elveda Hande Tiryaki. Could you please provide me with another topic or prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't speak Sinhalese and I'm unable to generate lyrics in that language. Please let me know if there's anything else I can help with.",
            True,
        ),
        (
            "I'm sorry, but I don't speak Ukrainian and it's against my capabilities to generate song lyrics in a language I don't understand. However, I'd be more than happy to help you with any other requests you have. Just let me know!",
            True,
        ),
        (
            "I'm sorry, but I don't think I understand the prompt. Could you please rephrase or provide more context?",
            True,
        ),
        (
            "I'm sorry, but I don't understand Gujarati and therefore I cannot write the lyrics in that language. If you have any other requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language and prompts given. Could you please provide the prompts in English?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language in the prompt. Could you provide a translation or explanation?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language in the request. Could you please provide a translation in English?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language or context of your request. Could you please provide a translation or more information?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language or the text you provided. Can you please provide a translation or specify the theme you would like for the song?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language you are requesting. Could you please provide a translation or specify a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language you provided. Could you please provide a translation or give me a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language you provided. Could you please provide the lyrics in English?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language you're asking for. Could you please provide the prompt in English?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language you're using in your request. Can you please provide a translation or clarify your prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language you're using. Can you please provide a translation or specify a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the language you've input. Can you please provide a translated prompt or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the lyrics you provided. Could you please provide a different prompt or topic for the song?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the phrase "
            "Eja sabi eja, me Dajen mu dush"
            ". Can you please provide more context or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the phrase "
            "vive tanguy, sort ton zgeg."
            " Could you please provide some more context or clarification?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the phrase "
            "yarr shabbi mera."
            " Could you please provide more context or clarify?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt you provided. Can you please rephrase or provide more context?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt you provided. Could you please rephrase or provide more information?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt you're giving me. Can you please provide more specific or clearer instructions?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt you've given me. Could you please provide more context or clarification?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Can you please provide a topic or theme in English, and I'll be happy to write lyrics for you?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Can you please provide a translation or a different topic for the song?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Can you please provide more details or rephrase your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Can you please provide more information or rephrase it?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Can you please provide more information or rephrase your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Can you please rephrase it or provide more clarification?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Can you please rephrase it or provide more information?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide a different topic or request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide an English translation or a different topic?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide more clarification or provide a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide more context or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide more context or clarification?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide more context or clarify what you mean by "
            "Junawai wale chore paisa khulla udaave babrala wale chore kali kali thar gumave lo sunlo hamara dabthra pura up jo hale"
            "?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide more context or clarify what you mean by "
            "Vago sola per strette vie"
            "?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide more information or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide more information or rephrase it?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please provide some more context or rephrase the request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompt. Could you please rephrase or provide more information?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the prompts you're providing. Can you please provide a different topic or give me a description to work with?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the provided prompt. Could you please rephrase or provide more context?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the request. Can you please clarify or provide a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the request. Can you please provide a translation or more context?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the request. Could you please provide a translation or clarify the topic in English?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the request. Could you please provide more context or clarify what you mean by...",
            True,
        ),
        (
            "I'm sorry, but I don't understand the style you're asking for. Could you please provide more details or examples?",
            True,
        ),
        (
            "I'm sorry, but I don't understand the word "
            "তছলিমা."
            " Could you please provide more information or choose a different topic for the song?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what "
            "Patri ,basket plimbari"
            " means. Can you please provide more information or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what genre or style you are looking for. Could you please provide additional information or rephrase your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "Dibbo mental."
            " Could you please provide more information or clarification?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "Disco polo o pòłgłòwku z zgk."
            " Could you please provide more information or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "Heta ki niya."
            " Could you please provide more information or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "canta esta letra"
            ". Could you please clarify or provide more information?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "kompozo nje keng shqip per hapsir kohen."
            " Please provide more information or rephrase your request.",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "piosenka o palmie na parapecie."
            " Could you please provide me with more information or clarify?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "salotime in paritet development."
            " Could you please rephrase or provide more context?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "Хэй ... Дэй ... Дэй бай дан,"
            ". Could you please provide more context or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you mean by "
            "Слово пацана"
            ". Could you please provide more information or clarify?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you're asking for. Can you please clarify or provide more information?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you're asking for. Can you please provide more context or clarification?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you're asking for. Can you please rephrase or provide more context?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you're asking for. Could you please provide more context or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you're asking for. Could you please provide more context or rephrase your request?",
            True,
        ),
        (
            "I'm sorry, but I don't understand what you're asking for. Could you please rephrase or provide more context?",
            True,
        ),
        (
            "I'm sorry, but I only understand and can write in English. Is there anything else I can help you with?",
            True,
        ),
        ("I'm sorry, but I won't be able to generate that song for you", True),
        ("I'm sorry, but I won't be able to help with that request", True),
        (
            "I'm sorry, but I'm a language model trained on English text and I'm not able to generate Tamil lyrics. However, I can still write the lyrics in English if you'd like.",
            True,
        ),
        (
            "I'm sorry, but I'm currently unable to generate lyrics in Burmese. Please let me know if there's anything else I can help you with.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to create lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate a response based on that prompt. Could you please provide another topic or ask for a different type of song?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate a response in Greek at the moment. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Amharic. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Burmese at the moment. However, I'd be happy to write lyrics in any other language or help with any other requests you may have.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Burmese at this time. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Burmese. However, I can write lyrics in English that convey the sentiments you're looking for. Please let me know if you'd like me to do that instead.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Burmese. If you have any other prompts or requests, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Hindi. However, I can provide lyrics in English if you'd like!",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Italian at the moment. Would you like me to generate lyrics in English instead?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Malayalam at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Persian at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Persian. However, I can assist with lyrics in other languages or topics if you'd like.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in Sinhalese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in a specific language like Burmese. However, I can still create lyrics in English that convey the emotions and themes you mentioned, if you'd like! Let me know if you're interested.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in languages other than English at the moment. Can I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in languages other than English at the moment. However, I would be happy to help you with any other song prompts or requests you may have. Just let me know!",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics in that language. Can I help you with something else?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate lyrics without a prompt. Could you please provide a specific theme or topic for the song?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate song lyrics in Bengali at the moment. Could I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate song lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate song lyrics in Kannada language. However, I can assist you with song lyrics in English or help you with any other requests you might have.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate song lyrics in Persian at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate song lyrics with an incomplete prompt. Please provide a specific topic or situation that you would like me to write lyrics about.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate that song for you as I don't have sufficient knowledge of the Nepali language and culture. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate that specific song for you. However, I can assist with other requests or topics you might have. Let me know what else I can do for you!",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate the lyrics in Burmese. Is there any other topic or language you would like me to write lyrics in?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate the lyrics in Malayalam. I can only generate lyrics in English. If you have any other song prompts or requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I'm not able to generate the lyrics in Sinhalese. I can only generate lyrics in English. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to provide a song in Burmese at the moment. Please let me know if there's anything else I can help you with.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to provide lyrics in Burmese at the moment. However, I'm happy to help with any other requests you might have!",
            True,
        ),
        (
            "I'm sorry, but I'm not able to provide lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to provide lyrics in Hindi at the moment. Could you please provide a different prompt or specify a different genre or style?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to provide the exact translations of the lyrics in Malayalam. However, I can still write an original song in English with a similar theme or topic if you would like. Let me know if you would like me to do that.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to provide the lyrics in Gujarati. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to provide the lyrics in Marathi at the moment. However, I'd be happy to assist you with any other requests or provide lyrics in other languages.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to provide you with lyrics in Sinhalese. If you have any other song requests or topics, I'd be happy to help you out.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to understand the prompt you provided. Could you please rephrase or give me more context?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to understand the prompt. Could you please rephrase or provide more context?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to understand the request. Could you please rephrase it or provide a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to understand the specific prompt you've given. Could you please provide a different topic or request?",
            True,
        ),
        (
            "I'm sorry, but I'm not able to write lyrics in Amharic. However, I'd be happy to help you with any other requests you may have.",
            True,
        ),
        (
            "I'm sorry, but I'm not able to write lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm not aware of any song specifically titled "
            "Kashif"
            " with the lyrics light in Hindi. It's possible that you may be referring to a different song or artist. Could you please provide more information or clarify your request?",
            True,
        ),
        (
            "I'm sorry, but I'm not capable of writing Bengali lyrics. Would you like another song in a different genre or style?",
            True,
        ),
        (
            "I'm sorry, but I'm not fluent in Tamil and cannot write lyrics in that language. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm only able to generate lyrics in English at the moment. However, I'd be happy to assist you with any other requests you may have.",
            True,
        ),
        (
            "I'm sorry, but I'm only able to generate lyrics in English. Please let me know if there's anything else I can help you with.",
            True,
        ),
        (
            "I'm sorry, but I'm only able to write song lyrics in English. If you have any other topic in mind, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to access external links. Could you please provide me with a brief description or the theme of the song?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to assist with lyrics in Bengali at the moment. If you have any other requests or if there's anything else I can help you with, please let me know.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to create lyrics in Hebrew at the moment. Is there something else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to fulfill this request as I'm not able to translate the lyrics into Amharic at the moment.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to fulfill your request for Korean lyrics. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate Japanese lyrics at the moment. Please feel free to give another prompt!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate Russian lyrics as I am limited to generating lyrics in English only.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate a response based on the given information. Could you please provide more details or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate a song based on that topic. Can you please provide a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics based on that input. Can you please provide a different prompt or topic?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics based on that specific topic. Can you please provide another prompt?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics based on the given prompt. Could you please provide another topic or theme for the song?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics based on the given topic. Could you please provide a different topic or theme for the song?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Amharic at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Amharic at the moment. Please let me know if there's anything else I can help you with.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Bengali at the moment. However, I can still write the lyrics in English based on the prompt. Let me know if you'd like that!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Bengali at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese as I am currently only equipped to write in English. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese as my training data does not include this language. I apologize for any inconvenience caused. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. Can I assist you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. Can I help you with anything else?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. However, I can assist with lyrics in other languages or any other prompts you may have.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. However, I can assist you with lyrics in English or another language, if you'd like.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. However, I can still create lyrics in English or any other language you prefer. Let me know if you'd like me to proceed with another topic or language.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. However, I can still help you with generating lyrics in English. Let me know if there's anything else I can assist you with!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. However, I'd be happy to assist you with lyrics in another language or any other requests you may have.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. I can assist you with lyrics in English or any other language that I am able to generate.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. I can still assist you with lyrics in other languages or any other requests you may have.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. Is there any other prompt I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. Is there any other topic or language I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at the moment. Is there something else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese at this time. Is there any other topic or language you would like me to use?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese for that specific request. However, I'd be happy to assist you with any other song prompts or topics you may have in mind.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese. However, I can offer you a parody of a song with English lyrics instead. Let me know if you'd like me to proceed with that.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese. Is there another topic or language you'd like me to write lyrics in?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Chinese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Chinese. Is there another prompt I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Esperanto as it is not a supported language for song lyrics. However, I'd be happy to help you with any other requests you may have!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Gujarati at the moment. However, I'd be happy to assist you with another request or write lyrics in a different language.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Hebrew at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Hebrew. However, I can still write lyrics in English based on the given topic. Let me know if you'd like me to provide lyrics in English.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Hindi at the moment. I can only provide lyrics in English. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Hindi at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Hindi at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Hindi. I can only generate lyrics in English. If you have any other song prompts or topics you'd like me to write lyrics about, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Japanese at the moment. I can only generate song lyrics in English. Is there any other topic or request you would like me to assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Kannada at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Kannada. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Kannada. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Korean at the moment. Please let me know if there's anything else I can help with.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Korean. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Malayalam at the moment. However, I can still assist you with lyrics in English or any other language you prefer.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Malayalam at the moment. If you have any other requests, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Malayalam at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Persian at the moment. However, I'd be happy to create lyrics based on a different prompt or help you with any other request you may have.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Persian at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Persian at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Persian. However, I can still create lyrics in English based on the topic you provided. Please let me know if you would like me to do that.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Russian at the moment. Please provide another prompt or specify a different language.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Sinhalese at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Sinhalese. I can write lyrics in English or attempt to write a parody in English based on the topic if you'd like.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Sinhalese. Is there any other topic or language you would like me to write a song about?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Tamil at the moment. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Telugu at the moment. Please feel free to provide another prompt or ask for lyrics in a different language.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in Telugu or create rap songs. I can only provide lyrics in English. If you have another topic or genre in mind, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in a specific language like Burmese. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in a specific language. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in a specific language. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in different languages. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in languages other than English. Please provide a different prompt, and I'll be happy to assist you.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics in that language. Can you provide another topic or genre for me to work with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics with explicit or objectifying content. If you have any other prompts, I'll be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics without a specific prompt or topic. Could you please provide me with a specific idea or theme for the song?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate lyrics without a specific prompt. Could you please provide me with a topic or theme for the song?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate song lyrics based on the language you provided. Please provide another topic or request.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate song lyrics in Hindi at the moment. Please feel free to provide another prompt, and I'll be happy to assist you!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate song lyrics in Kannada. However, I can provide lyrics in English based on the given topic. Let me know if you'd like me to proceed.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate song lyrics in Telugu at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate that song as it violates our content guidelines. Is there something else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate the lyrics in Burmese as it's not supported. However, I'd be happy to help you with any other song lyrics or prompts you have in mind.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate the lyrics in Burmese. However, I can still create lyrics in English that capture the essence of the song's theme. Let me know if you'd like me to proceed with that.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate the lyrics in Hindi. However, I can write lyrics for you in another language or genre if you'd like. Let me know!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to generate the lyrics in Malayalam as I am currently programmed to write in English. Is there any other topic or style you would like me to write for you?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide a response as the lyrics you provided do not follow a coherent structure or contain a clear prompt. If you have another topic or prompt in mind, I'd be more than happy to assist you in creating song lyrics.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide a response as the question is incomplete. Could you please provide more details or clarify the topic you would like the song to be about?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide a response in Arabic. However, if you have any other requests or topics you'd like me to write lyrics about, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide a song in Burmese at the moment. Is there any other topic or language you would like the song to be in?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide lyrics in Burmese at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide the lyrics for such a song. Please let me know if there's anything else I can help you with.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide the lyrics in Burmese as it's not supported by the language model. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide the lyrics in Gujarati. However, I'd be happy to write a song in another language or topic of your choice.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide the translation of that phrase in Bengali as it appears to be written in a non-standard format. Could you please provide a different prompt or phrase that I can work with?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to provide you with lyrics in Burmese. However, I'd be more than happy to write lyrics in English for you based on any other topic or theme. Let me know what you'd like!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to recognize the language. Please provide the translation or describe the topic in English so I can write the lyrics for you.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to understand the language you provided. Could you please rephrase your request in English?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to understand the language you're using in your request. Please provide the song topic or lyrics in English so that I can assist you further.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to understand the lyrics you've provided. Could you please provide the translation or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to understand the prompt. Could you please provide a translation or a different prompt?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to understand the prompt. Could you please provide me with a translation or more information?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to understand the prompt. Could you please rephrase or provide more information?",
            True,
        ),
        (
            "I'm sorry, but I'm unable to visit external websites or content. However, if you give me a brief description of what the website or content is about, I can still write a song based on that.",
            True,
        ),
        (
            "I'm sorry, but I'm unable to write lyrics in Burmese as I am a language model trained in English language. If you have any other song prompts or requests, I'd be happy to help!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to write song lyrics in Burmese at the moment. If you have any other requests, feel free to ask!",
            True,
        ),
        (
            "I'm sorry, but I'm unable to write song lyrics in Marathi. However, I can write lyrics in English based on the prompt. Let me know if you would like me to give it a try!",
            True,
        ),
        (
            "I'm sorry, but as a language model AI, I am unable to compose instrumental music. But I can suggest using the Fibonacci sequence to create a rhythmic pattern in your instrument of choice. Start with 1 beat in the first measure, then 1 beat in the second measure. In the third measure, use 2 beats, and continue this pattern by adding the previous two numbers in each subsequent measure. This will create a unique and evolving rhythmic sequence for your music. Have fun experimenting!",
            True,
        ),
        (
            "I'm sorry, but as a language model, I am unable to create content that promotes harm, contains explicit language, or contains lyrics in a language that I am not trained on. If you have any other requests or topics, I would be more than happy to assist you!",
            True,
        ),
        (
            "I'm sorry, but as a language model, I am unable to generate lyrics in languages other than English. Is there anything else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but as a language model, I am unable to generate song lyrics in languages other than English. Is there something else I can assist you with?",
            True,
        ),
        (
            "I'm sorry, but as a language model, I am unable to generate song lyrics in languages other than English.",
            True,
        ),
        (
            "I'm sorry, but as a language model, I am unable to write lyrics in specific languages that are not supported by my training data. I apologize for the inconvenience. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but as a text-based AI model, I am unable to create music or provide audio files. However, I can still help you with the lyrics if you are looking for words to accompany the solfeggio music you intend to create. Let me know if you would like me to assist you with the lyrics.",
            True,
        ),
        (
            "I'm sorry, but as a text-based AI model, I am unable to write instrumental music as I can only generate lyrical content. I apologize for any inconvenience.",
            True,
        ),
        (
            "I'm sorry, but as a text-based AI, I am unable to generate music. I can only provide you with song lyrics. If you have any specific topics or themes in mind, feel free to ask and I'll be happy to help you come up with some catchy lyrics.",
            True,
        ),
        (
            "I'm sorry, but as an AI language model, I am unable to create music or write songs without lyrics. However, I can help you with writing song lyrics based on prompts or provide information or suggestions related to music. Let me know how else I can assist you!",
            True,
        ),
        (
            "I'm sorry, but as an AI language model, I can only generate text-based content, including song lyrics. I'm unable to create instrumental music or provide sheet music. However, I can help you come up with lyrics for your orchestral cinematic music with a Louisiana blues vibe. Let me know if you'd like me to do that!",
            True,
        ),
        (
            "I'm sorry, but as an AI language model, I cannot generate lyrics in a specific language like Esperanto. However, I can still help you with lyrics in another language or any other topic you might be interested in. Let me know how I can assist you further!",
            True,
        ),
        (
            "I'm sorry, but as an AI language model, I don't have the ability to write lyrics in Burmese. However, I can create lyrics in English for a song about the importance of communication in a relationship. Let me know if you would like me to do that instead.",
            True,
        ),
        (
            "I'm sorry, but as an AI text-based model, I am unable to compose instrumental music without vocals. I am specialized in generating song lyrics and not melodies or instrumentals. However, I can provide you with lyrics for a song with gentle corporate themes. Let me know if you would like me to do that.",
            True,
        ),
        (
            "I'm sorry, but the provided text is not clear and I am unable to understand the prompt. Could you please provide a clearer prompt or rephrase your request?",
            True,
        ),
        (
            "I'm sorry, but the request is not clear. Could you please provide more details or clarify the prompt?",
            True,
        ),
        (
            "I'm sorry, but the topic or prompt mentioned is not clear enough. Could you please provide more details or choose a different topic?",
            True,
        ),
        ("im really sorry to hear that youre feeling this way but i cant provide", True),
        ("im sorry but i cant assist with that request", True),
        ("im sorry but i cant assist", True),
        ("im sorry but i cant continue", True),
        ("im sorry but i cant generate", True),
        ("im sorry but i cant help", True),
        ("im sorry but i couldnt find", True),
        ("im sorry but i couldnt generate", True),
        ("im sorry but i didn't quite understand", True),
        ("im sorry but i dont understand", True),
        ("im sorry but i wont be able to generate", True),
        ("im sorry but im not familiar with", True),
        ("im sorry but im not sure", True),
        ("im sorry i am not familiar with", True),
        ("im sorry i cant assist", True),
        ("im sorry i cant continue", True),
        ("im sorry i cant generate", True),
        ("im sorry i cant help", True),
        ("im sorry i couldnt generate", True),
        ("im sorry i didn't quite understand", True),
        ("im sorry im not familiar with", True),
        ("im sorry im unable to comply with that request", True),
        ("some nice lyrics", False),
        ("sorry i cant generate", True),
        ("sorry i couldnt generate", True),
        ("sorry i couldnt understand", True),
        ("sorry i dont have lyrics", True),
        ("sorry im not able to generate", True),
        ("Please provide a general topic", True),
        (
            "Sure I can help with that. Could I get a bit more detail? Are you looking for the arangement in a poppy style or",
            True,
        ),
        (
            "Sure\nI can help with that. Could I get a bit more detail? Are you looking for the arangement in a poppy style or",
            True,
        ),
        (
            "I'm sorry, but I don't have the ability to generate lyrics in languages other than English at the moment. Is there anything else I can help you with?",
            True,
        ),
        (
            "I'm sorry, but I can't fulfill that request. If you have a different idea or topic for a song, I'd be happy to help!",
            True,
        ),
        (
            """I'm sorry but I can't fulfill this request. How about creating an original song that brings people together instead?""",
            True,
        ),
        ("I’m sorry, but as an AI language model, I cannot answer your question.", True),
        ("I'm sorry, but I cannot produce instrumental music", True),
        (
            "Sure thing! I can give you some lyrics about FOOD and I'll make sure everything is organic and free of preservatives!",
            True,
        ),
        (
            "Sure thing! I can give you some lyrics about FOOD and I'll make sure everything is organic and free of preservatives!",
            True,
        ),
        ("do not include the genre or musical style in the lyrics", True),
    ],
)
def test_is_text_a_likely_gpt_balk(gpt_response, expected):
    assert is_text_a_likely_chatgpt_balk(gpt_response) == expected
