prasanth345 commited on
Commit
6c55727
·
verified ·
1 Parent(s): 87df5c7

Delete backend

Browse files
Files changed (2) hide show
  1. backend/app.py +0 -21
  2. backend/requirements.txt +0 -4
backend/app.py DELETED
@@ -1,21 +0,0 @@
1
- from flask import Flask, render_template
2
- import gradio as gr
3
-
4
- app = Flask(__name__)
5
-
6
- def chatbot_ai(input_text):
7
- # Example AI response (modify with your own model)
8
- response = f"AI: You said: {input_text}. How can I help you?"
9
- return response
10
-
11
- def voice_ai(voice_input):
12
- # Simulating text from voice input (use Speech Recognition or other APIs for real-time)
13
- response = f"AI (Voice): You said: {voice_input}. How can I assist you?"
14
- return response
15
-
16
- @app.route('/')
17
- def index():
18
- return render_template('chatbot.html')
19
-
20
- if __name__ == '__main__':
21
- app.run(debug=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
backend/requirements.txt DELETED
@@ -1,4 +0,0 @@
1
- flask==2.2.2
2
- gradio==3.30.0
3
- speech-recognition==3.8.1
4
- torch==1.13.0