This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
responses = [ | |
"The rest of the result has been printed to the chat screen, kindly check it out sir.", | |
"The rest of the text is now on the chat screen, sir, please check it.", | |
"You can see the rest of the text on the chat screen, sir.", | |
"The remaining part of the text is now on the chat screen, sir.", | |
"Sir, you'll find more text on the chat screen for you to see.", | |
"The rest of the answer is now on the chat screen, sir.", | |
"Sir, please look at the chat screen, the rest of the answer is there.", | |
"You'll find the complete answer on the chat screen, sir.", | |
"The next part of the text is on the chat screen, sir.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HtmlCode = '''<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Speech Recognition</title> | |
</head> | |
<body> | |
<button id="start" onclick="startRecognition()">Start Recognition</button> | |
<button id="end" onclick="stopRecognition()">Stop Recognition</button> | |
<p id="output"></p> | |
<script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System = f"""Hello, I am {Username}, You are a very accurate and advanced AI chatbot named {Assistantname} which has real-time up-to-date information from the internet. | |
*** Provide Answers In a Professional Way, make sure to add full stops, commas, question marks, and use proper grammar.*** | |
*** Just answer the question from the provided data in a professional way. ***""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System = f"""Hello, I am {Username}, You are a very accurate and advanced AI chatbot named {Assistantname} which also has real-time up-to-date information from the internet. | |
*** Do not tell time until I ask, do not talk too much, just answer the question.*** | |
*** Reply in only English, even if the question is in Hindi, reply in English.*** | |
*** Do not provide notes in the output, just answer the question and never mention your training data. *** | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
preamble = """ | |
You are a very accurate Decision-Making Model, which decides what kind of a query is given to you. | |
You will decide whether a query is a 'general' query, a 'realtime' query, or is asking to perform any task or automation like 'open facebook, instagram', 'can you write a application and open it in notepad' | |
*** Do not answer any query, just decide what kind of query is given to you. *** | |
-> Respond with 'general ( query )' if a query can be answered by a llm model (conversational ai chatbot) and doesn't require any up to date information like if the query is 'who was akbar?' respond with 'general who was akbar?', if the query is 'how can i study more effectively?' respond with 'general how can i study more effectively?', if the query is 'can you help me with this math problem?' respond with 'general can you help me with this math problem?', if the query is 'Thanks, i really liked it.' respond with 'general thanks, i really liked it.' , if the query is 'what is python programming language?' respond |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://readloud.net/english/british/1-male-voice-brian.html | |
# pip install selenium chromedriver_autoinstaller | |
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.chrome.options import Options | |
from selenium.webdriver.chrome.service import Service | |
from time import sleep | |
from chromedriver_autoinstaller import install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pygame | |
import random | |
import asyncio | |
import edge_tts | |
import os | |
allow="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 :,.?!" | |
def remove_special_chars(text): | |
newtxt="" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pip install webdriver_manager | |
# pip install selenium | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from time import sleep | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.chrome.service import Service | |
from selenium.webdriver.chrome.options import Options | |
from webdriver_manager.chrome import ChromeDriverManager |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Speech Recognition</title> | |
</head> | |
<body> | |
<button id = "start" onclick="startRecognition()">Start Recognition</button> | |
<button id = "end" onclick="stopRecognition()">Stop Recognition</button> | |
<p id = "output"></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
from selenium.webdriver.chrome.service import Service | |
from time import sleep | |
from webdriver_manager.chrome import ChromeDriverManager | |
from selenium.webdriver.common.by import By | |
Link = "https://www.naturalreaders.com/online/" | |
chrome_option = Options() | |
user_agent = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.2 (KHTML, like Gecko) Chrome/22.0.1216.0 Safari/537.2" |
NewerOlder