|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8" /> |
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0" /> |
|
<meta name="description" content="A conversational AI system that listens, learns, and challenges" /> |
|
<meta property="og:title" content="ChatGPT" /> |
|
<meta property="og:image" content="https://openai.com/content/images/2022/11/ChatGPT.jpg" /> |
|
<meta |
|
property="og:description" |
|
content="A conversational AI system that listens, learns, and challenges" /> |
|
<meta property="og:url" content="https://chat.acy.dev" /> |
|
<link rel="stylesheet" href="{{ url_for('bp.static', filename='css/style.css') }}" /> |
|
<link |
|
rel="apple-touch-icon" |
|
sizes="180x180" |
|
href="{{ url_for('bp.static', filename='img/apple-touch-icon.png') }}" /> |
|
<link |
|
rel="icon" |
|
type="image/png" |
|
sizes="32x32" |
|
href="{{ url_for('bp.static', filename='img/favicon-32x32.png') }}" /> |
|
<link |
|
rel="icon" |
|
type="image/png" |
|
sizes="16x16" |
|
href="{{ url_for('bp.static', filename='img/favicon-16x16.png') }}" /> |
|
<link rel="manifest" href="{{ url_for('bp.static', filename='img/site.webmanifest') }}" /> |
|
<link |
|
rel="stylesheet" |
|
href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@latest/build/styles/base16/dracula.min.css" /> |
|
<title>Chat.CofAI</title> |
|
</head> |
|
|
|
<body data-urlprefix="{{ url_prefix}}"> |
|
<div class="main-container"> |
|
<div class="box sidebar"> |
|
<div class="top"> |
|
<button class="button" onclick="new_conversation()"> |
|
<i class="fa-regular fa-plus"></i> |
|
<span>Новый чат</span> |
|
</button> |
|
<div class="spinner"></div> |
|
</div> |
|
<div class="sidebar-footer"> |
|
<button class="button" onclick="delete_conversations()"> |
|
<i class="fa-regular fa-trash"></i> |
|
<span>Очистить историю</span> |
|
</button> |
|
<div class="field checkbox theme-toggler-container"> |
|
<input type="checkbox" id="theme-toggler" /> |
|
<label for="theme-toggler"></label> |
|
<span>Тёмная тема</span> |
|
</div> |
|
<a class="info" href="https://chat-cofai.nethouse.ru/" target="_blank"> |
|
<i class="fa-brands fa-github"></i> |
|
<span class="conversation-title"> Chat.CofAI BETA-4 </span> |
|
</a> |
|
</div> |
|
</div> |
|
<div class="conversation"> |
|
<div class="stop-generating stop-generating-hidden"> |
|
<button class="button" id="cancelButton"> |
|
<span>Остановить генерацию</span> |
|
</button> |
|
</div> |
|
<div class="box" id="messages"></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"> |
|
<i class="fa-regular fa-paper-plane-top"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<div> |
|
<div class="options-container"> |
|
<div class="buttons"> |
|
<div class="field"> |
|
<select class="dropdown" name="model" id="model"> |
|
<option value="gpt-3.5-turbo" selected>[BAD] GPT-3.5</option> |
|
<option value="gpt-3.5-turbo-0301">[OLD] GPT-3.5-turbo-0301</option> |
|
<option value="gpt-3.5-turbo-16k">[STABLE]GPT-3.5-turbo-16k</option> |
|
<option value="gpt-4">[BEST] GPT-4</option> |
|
</select> |
|
</div> |
|
<div class="field"> |
|
<select class="dropdown" name="jailbreak" id="jailbreak"> |
|
<option value="default" selected>Стандарт</option> |
|
<option value="gpt-dan-11.0">Буёк</option> |
|
<option value="gpt-evil">Злодей</option> |
|
</select> |
|
</div> |
|
</div> |
|
<div class="field checkbox"> |
|
<input type="checkbox" id="switch" /> |
|
<label for="switch"></label> |
|
<span>Доступ в интернет</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="menu-button"> |
|
<i class="fa-solid fa-bars"></i> |
|
</div> |
|
|
|
|
|
<script> |
|
window.conversation_id = "{{ chat_id }}"; |
|
</script> |
|
<script src="{{ url_for('bp.static', filename='js/icons.js') }}"></script> |
|
<script src="{{ url_for('bp.static', filename='js/chat.js') }}" defer></script> |
|
<script src="https://cdn.jsdelivr.net/npm/markdown-it@latest/dist/markdown-it.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/theme-toggler.js') }}"></script> |
|
<script src="{{ url_for('bp.static', filename='js/sidebar-toggler.js') }}"></script> |
|
</body> |
|
</html> |
|
|