vsj0702 commited on
Commit
22621c3
·
verified ·
1 Parent(s): 6219ed4

Adding app.py

Browse files
Files changed (1) hide show
  1. app.py +66 -0
app.py ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from audio_recorder_streamlit import audio_recorder
3
+ from groq import Groq
4
+ import os
5
+ from dotenv import load_dotenv
6
+ from langchain_groq import ChatGroq
7
+ from langchain_core.output_parsers import StrOutputParser
8
+ from langchain_core.prompts import ChatPromptTemplate
9
+ load_dotenv()
10
+ client = Groq(api_key=os.getenv('GROQ_API_KEY'))
11
+ model = 'whisper-large-v3'
12
+
13
+ #Front end using streamlit
14
+ def frontend():
15
+ st.title("Voice AI Demo")
16
+ status_placeholder = st.empty()
17
+ status_placeholder.write("Press Mic button to start asking question")
18
+ recorded_audio = audio_recorder()
19
+ if recorded_audio:
20
+ status_placeholder.write("Converting audio ...")
21
+ data_to_file(recorded_audio)
22
+ status_placeholder.write("Audio conversion done.")
23
+ status_placeholder.write("Convering audio to text and making transcription...")
24
+ transcription = audio_to_text("temp_audio.wav")
25
+ status_placeholder.write("Transcription is now made.")
26
+ status_placeholder.write("Getting response...")
27
+ response = answer(transcription)
28
+ status_placeholder.write("Press mic button again to ask more questions")
29
+ st.write("Q:" + transcription)
30
+ st.write("A: " + response)
31
+
32
+ #Fuction to convert audio data to audio file
33
+ def data_to_file(recorded_audio):
34
+ temp_audio_path = "temp_audio.wav"
35
+ with open(temp_audio_path, "wb") as temp_file:
36
+ temp_file.write(recorded_audio)
37
+
38
+
39
+ #Function for audio to text
40
+ def audio_to_text(audio_path):
41
+ with open(audio_path, 'rb') as file:
42
+ transcription = client.audio.translations.create(
43
+ file=(audio_path, file.read()),
44
+ model='whisper-large-v3',
45
+ )
46
+ return transcription.text
47
+
48
+ #Function for answerig User Query
49
+ def answer(user_question):
50
+ model = ChatGroq(
51
+ model="llama-3.3-70b-versatile",
52
+ temperature=0.6
53
+ )
54
+
55
+ prompt = ChatPromptTemplate([
56
+ ("system", "You are super knowlegable AI chat bot whuch will answer all User Query, answer with confident, also this response will get convert back to speech, so dont make point or anything, but make your answer in para form and dont make it too large, and use proper annotation, comma, full stop, question mark, so that a better text to speach can be genrate back."),
57
+ ("user", "User Query: {question}"),
58
+ ])
59
+
60
+ parser = StrOutputParser()
61
+
62
+ chain = prompt|model|parser
63
+ answer = chain.invoke({'question': user_question})
64
+ return answer
65
+
66
+ frontend()