From 347d3f92da458520b30e91e56bd66e472e084e70 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Mon, 25 Mar 2024 21:06:51 +0100 Subject: Add .har file support for OpenaiChat Update model list of HuggingChat Update styles of scrollbar in gui Fix image upload in gui --- g4f/gui/client/static/css/style.css | 14 ++++++++++++++ g4f/gui/client/static/js/chat.v1.js | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'g4f/gui/client/static') diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index 28064159..0aa28ac9 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -1020,3 +1020,17 @@ a:-webkit-any-link { padding: var(--inner-gap) var(--section-gap); resize: vertical; } + +::-webkit-scrollbar { + width: 10px; +} +::-webkit-scrollbar-track { + background: var(--colour-3); +} +::-webkit-scrollbar-thumb { + background: var(--blur-bg); + border-radius: 5px; +} +::-webkit-scrollbar-thumb:hover { + background: var(--accent) +} \ No newline at end of file diff --git a/g4f/gui/client/static/js/chat.v1.js b/g4f/gui/client/static/js/chat.v1.js index f9bc4568..a3a1cccf 100644 --- a/g4f/gui/client/static/js/chat.v1.js +++ b/g4f/gui/client/static/js/chat.v1.js @@ -955,7 +955,7 @@ async function api(ressource, args=null, file=null) { } const url = `/backend-api/v2/${ressource}`; if (ressource == "conversation") { - const body = JSON.stringify(args); + let body = JSON.stringify(args); const headers = { accept: 'text/event-stream' } -- cgit v1.2.3