diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 10:43:53 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 10:43:53 +0200 |
commit | 932d3a3ca092756cc3025e427fabf9ab674350fc (patch) | |
tree | c26601230c54c3c1a932fb9a249cd49751193237 /g4f/gui/client | |
parent | Merge pull request #1862 from hlohaus/nem (diff) | |
download | gpt4free-932d3a3ca092756cc3025e427fabf9ab674350fc.tar gpt4free-932d3a3ca092756cc3025e427fabf9ab674350fc.tar.gz gpt4free-932d3a3ca092756cc3025e427fabf9ab674350fc.tar.bz2 gpt4free-932d3a3ca092756cc3025e427fabf9ab674350fc.tar.lz gpt4free-932d3a3ca092756cc3025e427fabf9ab674350fc.tar.xz gpt4free-932d3a3ca092756cc3025e427fabf9ab674350fc.tar.zst gpt4free-932d3a3ca092756cc3025e427fabf9ab674350fc.zip |
Diffstat (limited to 'g4f/gui/client')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 2 | ||||
-rw-r--r-- | g4f/gui/client/static/js/chat.v1.js | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index c0279bc2..a28c9cd6 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -890,7 +890,7 @@ a:-webkit-any-link { resize: vertical; max-height: 200px; - min-height: 80px; + min-height: 100px; } /* style for hljs copy */ diff --git a/g4f/gui/client/static/js/chat.v1.js b/g4f/gui/client/static/js/chat.v1.js index 39027260..a043cb25 100644 --- a/g4f/gui/client/static/js/chat.v1.js +++ b/g4f/gui/client/static/js/chat.v1.js @@ -302,7 +302,7 @@ async function add_message_chunk(message) { window.provider_result = message.provider; content.querySelector('.provider').innerHTML = ` <a href="${message.provider.url}" target="_blank"> - ${message.provider.name} + ${message.provider.label ? message.provider.label : message.provider.name} </a> ${message.provider.model ? ' with ' + message.provider.model : ''} ` @@ -545,7 +545,8 @@ const load_conversation = async (conversation_id, scroll=true) => { last_model = item.provider?.model; let next_i = parseInt(i) + 1; let next_provider = item.provider ? item.provider : (messages.length > next_i ? messages[next_i].provider : null); - let provider_link = item.provider?.name ? `<a href="${item.provider.url}" target="_blank">${item.provider.name}</a>` : ""; + let provider_label = item.provider?.label ? item.provider?.label : item.provider?.name; + let provider_link = item.provider?.name ? `<a href="${item.provider.url}" target="_blank">${provider_label}</a>` : ""; let provider = provider_link ? ` <div class="provider"> ${provider_link} |