-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
67 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="height=device-height,width=device-width,initial-scale=1,maximum-scale=5,viewport-fit=cover,interactive-widget=resizes-visual" mobileAppIOS="true"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <meta name="full-screen" content="yes"> <meta name="screen-orientation" content="portrait"> <meta name="color-scheme" content="dark light"> <meta name="theme-color" content="#181818" media="(prefers-color-scheme:dark)"> <script>"serviceWorker"in navigator&&window.addEventListener("load",(()=>{navigator.serviceWorker.register("{{ url_for('bp.static', filename='js/serviceworker.min.js') }}")}))</script> <meta name="description" content="A conversational AI system that listens, learns, and challenges"> <link rel="manifest" href="{{ url_for('bp.static', filename='img/site.webmanifest') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/global.min.css') }}"> <link rel="stylesheet" rel="preload" href="{{ url_for('bp.static', filename='css/main.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/round.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/katex.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/texmath.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/hljs.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/conversation.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/message.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/stop-generating.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/typing.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/checkbox.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/label.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/button.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/dropdown.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/field.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/select.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/settings.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/message-input.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/sidebar.min.css') }}"> <link rel="icon" href="{{ url_for('bp.static', filename='img/favicon.ico') }}" media="(prefers-color-scheme:dark)"> <link rel="icon" href="{{ url_for('bp.static', filename='img/favicon-light.ico') }}" media="(prefers-color-scheme:light)"> <title>FreeGPT</title> </head> <body data-urlprefix="{{ url_prefix}}"> <div class="main-container"> <div class="box sidebar"> <button class="button" id="sidebar-button" onclick="new_conversation()"> <span class="material-icons-round">add</span> <span>{{_('New Conversation')}}</span> </button> <div class="top"> </div> <div class="sidebar-footer"> <div class="settings-container"> <div class="popup"> <span class="popuptext" id="gpt3">{{_('gpt')}}</span> <span class="popuptext" id="gpt4">{{_('gpt4')}}</span> <span class="popuptext" id="llama">{{_('llama2')}}</span> <span class="popuptext" id="mixtral">{{_('mixtral')}}</span> </div> <div class="field" style="display:none"> <span>{{_('Provider')}}</span> <select class="dropdown" name="provider" id="provider"> <option value="g4f.Provider.Auto">Auto</option> </select> </div> <div class="field"> <span>{{_('Model')}}</span> <span class="material-icons-round model-info" onmouseenter="showModelInfo()" onmouseleave="showModelInfo()">info</span> </div> <div class="field checkbox"> <span>{{_('Web Access')}}</span> <input type="checkbox" id="switch"> </div> </div> <a class="info" href="https://github.com/Mylinde/freegpt" target="_blank"> <span id="version">FreeGPT {{_('Version')}} 1.0 </span> </a> </div> </div> <div class="conversation"> <span id="pdf-button" class="material-icons-round">picture_as_pdf</span> <span id="share-button" class="material-icons-round">share</span> <div class="stop-generating stop-generating-hidden"> <button class="button" id="cancelButton"> <span>{{_('Stop Generating')}}</span> </button> </div> <div class="user-input"> <div class="box input-box"> <textarea id="message-input" placeholder="{{_('Ask a question')}}" cols="30" rows="10" style="white-space:pre-wrap"></textarea> <div id="send-button"> <span class="material-icons-round">send</span> </div> </div> </div> </div> <div class="menu-button"> <span class="material-icons-round">menu</span> </div> <script>window.conversation_id="{{ chat_id }}"</script> <script src="{{ url_for('bp.static', filename='js/theme-toggler.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/markdown-it.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/katex.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/texmath.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/highlight.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/highlightjs-copy.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/scale.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/purify.min.js') }}"></script> <script type="module" src="{{ url_for('bp.static', filename='js/jspdf.umd.min.js') }}"></script> <script type="module" src="{{ url_for('bp.static', filename='js/assistant.regular-normal.min.js') }}"></script> <script type="module" src="{{ url_for('bp.static', filename='js/assistant.kursiv-normal.min.js') }}"></script> <script rel="preload" src="{{ url_for('bp.static', filename='js/chat.min.js') }}" defer></script> <script src="{{ url_for('bp.static', filename='js/sidebar-toggler.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/change-language.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/provider-sort.min.js') }}"></script> </div> | ||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="height=device-height,width=device-width,initial-scale=1,maximum-scale=5,viewport-fit=cover,interactive-widget=resizes-visual" mobileAppIOS="true"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <meta name="full-screen" content="yes"> <meta name="screen-orientation" content="portrait"> <meta name="color-scheme" content="dark light"> <meta name="theme-color" content="#181818" media="(prefers-color-scheme:dark)"> <script>"serviceWorker"in navigator&&window.addEventListener("load",(()=>{navigator.serviceWorker.register("{{ url_for('bp.static', filename='js/serviceworker.min.js') }}")}))</script> <meta name="description" content="A conversational AI system that listens, learns, and challenges"> <link rel="manifest" href="{{ url_for('bp.static', filename='img/site.webmanifest') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/global.min.css') }}"> <link rel="stylesheet" rel="preload" href="{{ url_for('bp.static', filename='css/main.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/round.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/katex.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/texmath.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/hljs.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/conversation.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/message.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/stop-generating.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/typing.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/checkbox.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/label.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/button.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/dropdown.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/field.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/select.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/settings.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/message-input.min.css') }}"> <link rel="stylesheet" href="{{ url_for('bp.static', filename='css/sidebar.min.css') }}"> <link rel="icon" href="{{ url_for('bp.static', filename='img/favicon.ico') }}" media="(prefers-color-scheme:dark)"> <link rel="icon" href="{{ url_for('bp.static', filename='img/favicon-light.ico') }}" media="(prefers-color-scheme:light)"> <title>FreeGPT</title> </head> <body data-urlprefix="{{ url_prefix}}"> <div class="main-container"> <div class="box sidebar"> <button class="button" id="sidebar-button" onclick="new_conversation()"> <span class="material-icons-round">add</span> <span>{{_('New Conversation')}}</span> </button> <div class="top"> </div> <div class="sidebar-footer"> <div class="settings-container"> <div class="popup"> <span class="popuptext" id="gpt3">{{_('gpt')}}</span> <span class="popuptext" id="gpt4">{{_('gpt4')}}</span> <span class="popuptext" id="llama">{{_('llama2')}}</span> <span class="popuptext" id="mixtral">{{_('mixtral')}}</span> <span class="popuptext" id="phi">{{_('phi')}}</span> <span class="popuptext" id="gemma">{{_('gemma')}}</span> </div> <div class="field" style="display:none"> <span>{{_('Provider')}}</span> <select class="dropdown" name="provider" id="provider"> <option value="g4f.Provider.Auto">Auto</option> </select> </div> <div class="field"> <span>{{_('Model')}}</span> <span class="material-icons-round model-info" onmouseenter="showModelInfo()" onmouseleave="showModelInfo()">info</span> </div> <div class="field checkbox"> <span>{{_('Web Access')}}</span> <input type="checkbox" id="switch"> </div> </div> <a class="info" href="https://github.com/Mylinde/freegpt" target="_blank"> <span id="version">FreeGPT {{_('Version')}} 1.0 </span> </a> </div> </div> <div class="conversation"> <span id="pdf-button" class="material-icons-round">picture_as_pdf</span> <span id="share-button" class="material-icons-round">share</span> <div class="stop-generating stop-generating-hidden"> <button class="button" id="cancelButton"> <span>{{_('Stop Generating')}}</span> </button> </div> <div class="user-input"> <div class="box input-box"> <textarea id="message-input" placeholder="{{_('Ask a question')}}" cols="30" rows="10" style="white-space:pre-wrap"></textarea> <div id="send-button"> <span class="material-icons-round">send</span> </div> </div> </div> </div> <div class="menu-button"> <span class="material-icons-round">menu</span> </div> <script>window.conversation_id="{{ chat_id }}"</script> <script src="{{ url_for('bp.static', filename='js/theme-toggler.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/markdown-it.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/katex.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/texmath.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/highlight.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/highlightjs-copy.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/scale.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/purify.min.js') }}"></script> <script type="module" src="{{ url_for('bp.static', filename='js/jspdf.umd.min.js') }}"></script> <script type="module" src="{{ url_for('bp.static', filename='js/assistant.regular-normal.min.js') }}"></script> <script type="module" src="{{ url_for('bp.static', filename='js/assistant.kursiv-normal.min.js') }}"></script> <script rel="preload" src="{{ url_for('bp.static', filename='js/chat.min.js') }}" defer></script> <script src="{{ url_for('bp.static', filename='js/sidebar-toggler.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/change-language.min.js') }}"></script> <script src="{{ url_for('bp.static', filename='js/provider-sort.min.js') }}"></script> </div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.