Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,121 +1,209 @@
|
|
1 |
import streamlit as st
|
2 |
-
import
|
3 |
-
import os
|
4 |
-
os.environ["SDL_AUDIODRIVER"] = "alsa"
|
5 |
-
os.environ["PULSE_SERVER"] = "127.0.0.1" # Ensures it looks for a PulseAudio server
|
6 |
-
os.environ["PA_ALSA_PLUGHW"] = "1" # Ensures ALSA hardware compatibility
|
7 |
-
import sounddevice as sd
|
8 |
-
import base64
|
9 |
-
import tempfile
|
10 |
-
import io
|
11 |
import numpy as np
|
12 |
-
import
|
13 |
-
from
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
"
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
40 |
|
41 |
-
|
42 |
-
def
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
def
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import torch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
import numpy as np
|
4 |
+
import re
|
5 |
+
from transformers import (
|
6 |
+
AutoModelForCausalLM,
|
7 |
+
AutoTokenizer,
|
8 |
+
AutoModelForSpeechSeq2Seq,
|
9 |
+
AutoProcessor
|
10 |
+
)
|
11 |
+
import speech_recognition as sr
|
12 |
+
import streamlit.components.v1 as components
|
13 |
+
|
14 |
+
# Avatar Personas (same as previous implementation)
|
15 |
+
AVATAR_PERSONAS = {
|
16 |
+
"Rat": {
|
17 |
+
"image": "rat.png",
|
18 |
+
"name": "Puzzle Master Rat",
|
19 |
+
"description": """
|
20 |
+
𧩠Clever and curious, I turn language learning into an exciting puzzle!
|
21 |
+
I love breaking down complex ideas into fun, logical challenges.
|
22 |
+
My teaching style is all about critical thinking and playful problem-solving.
|
23 |
+
""",
|
24 |
+
"teaching_style": "Analytical and game-based learning",
|
25 |
+
"sample_phrase": "Let's solve this English mystery together!",
|
26 |
+
"voice_sample": "I love solving word puzzles and learning new things!"
|
27 |
+
},
|
28 |
+
"Ox": {
|
29 |
+
"image": "ox.png",
|
30 |
+
"name": "Professor Ox",
|
31 |
+
"description": """
|
32 |
+
π Patient and methodical, I guide you through English step by step.
|
33 |
+
I break down grammar and vocabulary into clear, manageable segments.
|
34 |
+
Learning is a journey, and I'll be your steady companion.
|
35 |
+
""",
|
36 |
+
"teaching_style": "Structured and systematic approach",
|
37 |
+
"sample_phrase": "Let's learn English systematically!",
|
38 |
+
"voice_sample": "English learning is about understanding each concept carefully."
|
39 |
+
},
|
40 |
+
"Tiger": {
|
41 |
+
"image": "tiger.png",
|
42 |
+
"name": "Adventure Coach Tiger",
|
43 |
+
"description": """
|
44 |
+
π Energetic and brave, I make English learning an exciting adventure!
|
45 |
+
I turn every lesson into a challenge, motivating you to push your limits
|
46 |
+
and discover the joy of language learning.
|
47 |
+
""",
|
48 |
+
"teaching_style": "High-energy and challenge-driven",
|
49 |
+
"sample_phrase": "Are you ready to level up your English?",
|
50 |
+
"voice_sample": "Let's make learning English an exciting journey!"
|
51 |
+
}
|
52 |
}
|
53 |
|
54 |
+
class AdvancedLanguageLearningAssistant:
|
55 |
+
def __init__(self, avatar_name):
|
56 |
+
# Existing implementation from previous version
|
57 |
+
self.avatar = AVATAR_PERSONAS[avatar_name]
|
58 |
+
|
59 |
+
# Simplified model loading for Hugging Face Spaces
|
60 |
+
try:
|
61 |
+
self.llm_model = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-small")
|
62 |
+
self.llm_tokenizer = AutoTokenizer.from_pretrained("microsoft/DialoGPT-small")
|
63 |
+
except Exception as e:
|
64 |
+
st.error(f"Model loading error: {e}")
|
65 |
+
self.llm_model = None
|
66 |
+
self.llm_tokenizer = None
|
67 |
+
|
68 |
+
def generate_response(self, user_input):
|
69 |
+
if not self.llm_model:
|
70 |
+
return "Sorry, I'm having trouble generating a response."
|
71 |
+
|
72 |
+
# Incorporate avatar's unique personality
|
73 |
+
prompt = f"""
|
74 |
+
Avatar: {self.avatar['name']}
|
75 |
+
Teaching Style: {self.avatar['teaching_style']}
|
76 |
+
User Input: {user_input}
|
77 |
+
|
78 |
+
Generate a response that:
|
79 |
+
1. Reflects the avatar's unique personality
|
80 |
+
2. Provides encouraging language learning support
|
81 |
+
3. Maintains an engaging tone
|
82 |
+
"""
|
83 |
+
|
84 |
+
try:
|
85 |
+
inputs = self.llm_tokenizer.encode(prompt, return_tensors='pt')
|
86 |
+
outputs = self.llm_model.generate(
|
87 |
+
inputs,
|
88 |
+
max_length=150,
|
89 |
+
temperature=0.7
|
90 |
+
)
|
91 |
+
|
92 |
+
response = self.llm_tokenizer.decode(outputs[0], skip_special_tokens=True)
|
93 |
+
return response
|
94 |
+
except Exception as e:
|
95 |
+
return f"Sorry, I'm having trouble generating a response. Error: {e}"
|
96 |
+
|
97 |
+
def avatar_selection_page():
|
98 |
+
"""
|
99 |
+
First stage: Avatar Selection
|
100 |
+
"""
|
101 |
+
st.title("Choose Your Learning Companion")
|
102 |
+
|
103 |
+
# Custom CSS for avatar selection
|
104 |
+
st.markdown("""
|
105 |
+
<style>
|
106 |
+
.avatar-grid {
|
107 |
+
display: grid;
|
108 |
+
grid-template-columns: repeat(3, 1fr);
|
109 |
+
gap: 20px;
|
110 |
+
padding: 20px;
|
111 |
+
}
|
112 |
+
.avatar-card {
|
113 |
+
border: 2px solid #f0f0f0;
|
114 |
+
border-radius: 10px;
|
115 |
+
padding: 15px;
|
116 |
+
text-align: center;
|
117 |
+
transition: all 0.3s ease;
|
118 |
+
}
|
119 |
+
.avatar-card:hover {
|
120 |
+
transform: scale(1.05);
|
121 |
+
border-color: #4CAF50;
|
122 |
+
}
|
123 |
+
.avatar-image {
|
124 |
+
width: 200px;
|
125 |
+
height: 200px;
|
126 |
+
object-fit: cover;
|
127 |
+
border-radius: 50%;
|
128 |
+
}
|
129 |
+
</style>
|
130 |
+
""", unsafe_allow_html=True)
|
131 |
+
|
132 |
+
# Avatar Selection Grid
|
133 |
+
st.markdown('<div class="avatar-grid">', unsafe_allow_html=True)
|
134 |
+
|
135 |
+
for avatar_key, avatar_info in AVATAR_PERSONAS.items():
|
136 |
+
st.markdown(f'''
|
137 |
+
<div class="avatar-card">
|
138 |
+
<img src="images/{avatar_info['image']}" class="avatar-image" alt="{avatar_info['name']}">
|
139 |
+
<h3>{avatar_info['name']}</h3>
|
140 |
+
<p>{avatar_info['description']}</p>
|
141 |
+
<button onclick="selectAvatar('{avatar_key}')">Select {avatar_info['name']}</button>
|
142 |
+
</div>
|
143 |
+
''', unsafe_allow_html=True)
|
144 |
+
|
145 |
+
st.markdown('</div>', unsafe_allow_html=True)
|
146 |
+
|
147 |
+
# JavaScript to handle avatar selection
|
148 |
+
st.markdown("""
|
149 |
+
<script>
|
150 |
+
function selectAvatar(avatarKey) {
|
151 |
+
window.parent.postMessage({type: 'avatarSelected', avatarKey: avatarKey}, '*');
|
152 |
+
}
|
153 |
+
</script>
|
154 |
+
""", unsafe_allow_html=True)
|
155 |
+
|
156 |
+
def conversation_page(selected_avatar):
|
157 |
+
"""
|
158 |
+
Second stage: Conversation Interface
|
159 |
+
"""
|
160 |
+
st.title(f"Learning English with {AVATAR_PERSONAS[selected_avatar]['name']}")
|
161 |
+
|
162 |
+
# Initialize Assistant
|
163 |
+
assistant = AdvancedLanguageLearningAssistant(selected_avatar)
|
164 |
+
|
165 |
+
# Conversation Interface
|
166 |
+
user_input = st.text_input("Type your message in English:")
|
167 |
+
|
168 |
+
if st.button("Send"):
|
169 |
+
if user_input:
|
170 |
+
response = assistant.generate_response(user_input)
|
171 |
+
st.write(f"π€ {response}")
|
172 |
+
|
173 |
+
def main():
|
174 |
+
# Initialize session state for tracking app stage
|
175 |
+
if 'stage' not in st.session_state:
|
176 |
+
st.session_state.stage = 'avatar_selection'
|
177 |
+
if 'selected_avatar' not in st.session_state:
|
178 |
+
st.session_state.selected_avatar = None
|
179 |
+
|
180 |
+
# Handle avatar selection
|
181 |
+
components.html("""
|
182 |
+
<script>
|
183 |
+
window.addEventListener('message', function(event) {
|
184 |
+
if (event.data.type === 'avatarSelected') {
|
185 |
+
window.parent.postMessage({
|
186 |
+
type: 'streamlit:setComponentValue',
|
187 |
+
key: 'selected_avatar',
|
188 |
+
value: event.data.avatarKey
|
189 |
+
}, '*');
|
190 |
+
}
|
191 |
+
});
|
192 |
+
</script>
|
193 |
+
""", height=0)
|
194 |
+
|
195 |
+
# Retrieve selected avatar
|
196 |
+
selected_avatar = st.experimental_get_query_params().get('selected_avatar', [None])[0]
|
197 |
+
|
198 |
+
if selected_avatar:
|
199 |
+
st.session_state.selected_avatar = selected_avatar
|
200 |
+
st.session_state.stage = 'conversation'
|
201 |
+
|
202 |
+
# Render appropriate page based on stage
|
203 |
+
if st.session_state.stage == 'avatar_selection':
|
204 |
+
avatar_selection_page()
|
205 |
+
elif st.session_state.stage == 'conversation':
|
206 |
+
conversation_page(st.session_state.selected_avatar)
|
207 |
+
|
208 |
+
if __name__ == "__main__":
|
209 |
+
main()
|