paleDriver7 commited on
Commit
ac22045
·
verified ·
1 Parent(s): 6fed84d

Update backend/app.py

Browse files
Files changed (1) hide show
  1. backend/app.py +16 -1
backend/app.py CHANGED
@@ -7,7 +7,7 @@ sys.path.append(os.path.dirname(__file__)) # 确保当前目录加入模块搜
7
 
8
  from llama3 import LlaMa3 # 导入您的 LlaMa3 类
9
 
10
- app = Flask(__name__)
11
  CORS(app)
12
 
13
  # 实例化 LlaMa3 模型
@@ -18,12 +18,27 @@ llama3_model = LlaMa3()
18
  #def health_check():
19
  # return "Service is running!", 200
20
 
 
21
  @app.route('/')
22
  def index():
23
  # 返回 HTML 页面
24
  #return render_template('index_s.html')
25
  # 提供前端的 index.html 文件
26
  return send_from_directory(app.static_folder, 'index.html')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
  @app.route('/chat', methods=['POST'])
29
  def chat():
 
7
 
8
  from llama3 import LlaMa3 # 导入您的 LlaMa3 类
9
 
10
+ app = Flask(__name__, static_folder='../frontend/dist', template_folder='../frontend/dist')
11
  CORS(app)
12
 
13
  # 实例化 LlaMa3 模型
 
18
  #def health_check():
19
  # return "Service is running!", 200
20
 
21
+ '''
22
  @app.route('/')
23
  def index():
24
  # 返回 HTML 页面
25
  #return render_template('index_s.html')
26
  # 提供前端的 index.html 文件
27
  return send_from_directory(app.static_folder, 'index.html')
28
+ '''
29
+ #添加一个路由来处理静态资源的请求
30
+ @app.route('/<path:filename>')
31
+ def serve_static(filename):
32
+ return send_from_directory(app.static_folder, filename)
33
+
34
+ #配置默认路由
35
+ #让 Flask 将所有非静态文件请求重定向到 index.html,以支持前端的 SPA 路由
36
+ @app.route('/')
37
+ @app.route('/<path:subpath>')
38
+ def index(subpath=None):
39
+ return send_from_directory(app.template_folder, 'index.html')
40
+
41
+
42
 
43
  @app.route('/chat', methods=['POST'])
44
  def chat():