cloud-run-gemini-chat/Application/CloudRun/Python-Django/geminiapp/templates/about.html (37 lines of code) (raw):

{% load static %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Gemini AI</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous" /> <link rel="shortcut icon" type="image/vnd.microsoft.icon" href="{% static 'favicon.ico' %}" > </script> </head> <body> <main class="container"> {% include 'nav.html' %} <h1>Gemini Application</h1> <p> This application implements the <a href="https://ai.google.dev/tutorials/rest_quickstart" target="_blank">Gemini REST API</a> using <a href="https://dotnet.microsoft.com/en-us/download/dotnet/8.0" target="_blank">ASP.NET Core 8.0</a> and is deployed on <a href="https://cloud.google.com/run" target="_blank">Google Cloud Run</a>. </p> <p> This application supports sending questions to Google Gemini and displays the response. The purpose is to demonstrate how to interface with Google Gemini. </p> <p> Three Google Gemini models are supported: <ul> <li>Google Gemini 1.0 Pro</li> <li>Google Gemini 1.0 Ultra</li> <li>Google Gemini 1.5 Pro</li> </ul> </p> {% include 'footer.html' %} </main> </body> </html>