diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-11 01:59:57 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-11 01:59:57 +0100 |
commit | 6c422b2965d07e33a4c03fd7e1963316500bd527 (patch) | |
tree | 852bda60253d7dacf020c819362918b8fb426b48 /g4f/gui/client/html | |
parent | Update image.py (diff) | |
download | gpt4free-6c422b2965d07e33a4c03fd7e1963316500bd527.tar gpt4free-6c422b2965d07e33a4c03fd7e1963316500bd527.tar.gz gpt4free-6c422b2965d07e33a4c03fd7e1963316500bd527.tar.bz2 gpt4free-6c422b2965d07e33a4c03fd7e1963316500bd527.tar.lz gpt4free-6c422b2965d07e33a4c03fd7e1963316500bd527.tar.xz gpt4free-6c422b2965d07e33a4c03fd7e1963316500bd527.tar.zst gpt4free-6c422b2965d07e33a4c03fd7e1963316500bd527.zip |
Diffstat (limited to 'g4f/gui/client/html')
-rw-r--r-- | g4f/gui/client/html/index.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/g4f/gui/client/html/index.html b/g4f/gui/client/html/index.html index 55b54b48..175b7dc8 100644 --- a/g4f/gui/client/html/index.html +++ b/g4f/gui/client/html/index.html @@ -114,10 +114,14 @@ <div class="box input-box"> <textarea id="message-input" placeholder="Ask a question" cols="30" rows="10" style="white-space: pre-wrap;resize: none;"></textarea> - <label for="image" title="Works only with Bing and OpenaiChat"> - <input type="file" id="image" name="image" accept="image/png, image/gif, image/jpeg, image/svg+xml" required/> + <label for="image" title="Works only with Bing, Gemini and OpenaiChat"> + <input type="file" id="image" name="image" accept="image/*" required/> <i class="fa-regular fa-image"></i> </label> + <label for="camera"> + <input type="file" id="camera" name="camera" accept="image/*" capture="camera" required/> + <i class="fa-solid fa-camera"></i> + </label> <label for="file"> <input type="file" id="file" name="file" accept="text/plain, text/html, text/xml, application/json, text/javascript, .sh, .py, .php, .css, .yaml, .sql, .log, .csv, .twig, .md" required/> <i class="fa-solid fa-paperclip"></i> |