Skip to content

Commit

Permalink
Initial commit for Llama 38-b Instruct Chat Interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Harshith Vaddiparthy authored and Harshith Vaddiparthy committed Jun 15, 2024
1 parent 3607a5e commit d102432
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,15 @@
cursor: pointer;
font-family: 'Press Start 2P', cursive;
text-transform: uppercase;
font-size: 0.8em; /* Smaller font size */
}
.chat-send.sending {
background-color: #aaa;
}
.chat-delete {
background-color: #e74c3c;
margin-left: 5px;
font-size: 0.8em; /* Smaller font size */
}
.chat-send:disabled,
.chat-delete:disabled {
Expand Down Expand Up @@ -147,6 +149,20 @@
opacity: 0.1; /* Make the GIF subtle */
pointer-events: none;
}
.repository-link {
position: absolute;
bottom: 15px;
left: 15px;
display: flex;
align-items: center;
text-decoration: none;
color: #ffffff;
font-family: 'Press Start 2P', cursive;
}
.repository-link img {
width: 40px;
height: 40px;
}
</style>
</head>
<body>
Expand All @@ -166,6 +182,9 @@ <h1>Llama 38-b Instruct Chat Interface</h1>
<button id="delete-button" class="chat-delete">Delete</button>
</div>
</div>
<a href="https://github.com/harshith-eth/Llama-38-B-Instruct-Chat-Interface" class="repository-link" target="_blank">
<img src="github.png" alt="GitHub Logo">
</a>

<script>
const chatInput = document.getElementById('chat-input');
Expand Down

0 comments on commit d102432

Please sign in to comment.