🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

chatgptTTS

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chatgptTTS

This is the simplest module for AI Conversations with TTS.

1.0.0
Maintainers
1

п»ї# ChatGPT-TTS Integration Library! The ChatGPT-TTS Integration Library is a powerful open-source tool that seamlessly combines the capabilities of ChatGPT and Text-to-Speech (TTS) technology. With this library, developers can effortlessly create conversational AI applications that not only understand text input but also generate natural-sounding spoken responses. This integration allows for a more immersive and interactive user experience, making it ideal for chatbots, virtual assistants, and other AI-driven applications.

Table of Contents

Getting Started

Installation

Install using pypi

pip install chatgpt-tts

or

  • Clone the GitHub repository:
    git clone https://github.com/soyll/chatgpt-tts.git	
    
  • Navigate to directory:
    cd chatgpt-tts 
    
  • (Recommended) Create a virtual environment to manage Python packages for your project:
    python3 -m venv venv
    
  • Activate the virtual enviropment
    • On windows:
      .\venv\Scripts\activate
      
    • On linux or macOs:
      source venv/bin/activate
      
  • Install the required Python packages from requirements.txt:
    pip install -r requirments.txt
    

Usage

import chatgpt-tts

# init ChatGPT-TTS
chat_tts = ChatGpt_TTS(speaker, model_id, language, folder_to_save)

# use ChatGPT-TTS
chat_tts.create_tts(text, prompt, user_id)

Models

All support modeles check in Silero Models

Integrate with Telegram

# code by bruhmnm
import telebot  
from chatgptTTS import chat  
  
TOKEN = "TELEGRAM_TOKEN"  

# init ChatGPT-TTS 
chat_tts = chat.ChatGpt_TTS("en_0", "v3_en", "en", folder="usr/audio/")  
  
bot = telebot.TeleBot(TOKEN)  
  
@bot.message_handler(content_types=['text'])  
def integrate(message):  
	audio = chat_tts.create_tts(text=message.text, prompt="prompt", id=message.from_user.id)  
	# read wav
	with open(audio[1], 'rb') as fd:  
		audio = fd.read()  
	# send voice
	bot.send_voice(message.from_user.id, audio)  
  
bot.polling(none_stop=True)

Parameters

namedescriptionexample
speakerA trained vocal pattern with gender, accent, and toneen_0, en_1
model_idUnique id of the language, indicating its versionen_v3, v3_ru
langLanguage indicating available model_id and speakerru, en
folderAbsolute path to the folder where Chat-GPT responses will be savedC:/Example/Path/
promptA set of words denoting a task or dialog scenarioAct as an editor and correct the mistakes in this text
textText indicating a request to Chat-Gpt to which it will later respondAI help for your creativty, no mstakes, great wrting!
idA unique number that, when integrated with social media, can be linked to an individual user for logsself.chat_id, self.user_id, id355367865, 34567653479

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts