gpt4free/g4f/gui/server/website.py
Heiner Lohaus 486e9a9122 Add login_url to authed providers
Create a home page for the GUI
Fix CopyButton in Code Highlight
2025-01-03 02:40:21 +01:00

46 lines
No EOL
1.3 KiB
Python

import uuid
from flask import render_template, redirect
def redirect_home():
return redirect('/chat')
class Website:
def __init__(self, app) -> None:
self.app = app
self.routes = {
'/': {
'function': self._home,
'methods': ['GET', 'POST']
},
'/chat/': {
'function': self._index,
'methods': ['GET', 'POST']
},
'/chat/<conversation_id>': {
'function': self._chat,
'methods': ['GET', 'POST']
},
'/menu/': {
'function': redirect_home,
'methods': ['GET', 'POST']
},
'/settings/': {
'function': redirect_home,
'methods': ['GET', 'POST']
},
'/images/': {
'function': redirect_home,
'methods': ['GET', 'POST']
},
}
def _chat(self, conversation_id):
if '-' not in conversation_id:
return redirect_home()
return render_template('index.html', chat_id=conversation_id)
def _index(self):
return render_template('index.html', chat_id=str(uuid.uuid4()))
def _home(self):
return render_template('home.html')