|
4 | 4 |
|
5 | 5 | <head>
|
6 | 6 | <meta charset="utf-8">
|
| 7 | + <style> |
| 8 | + label { |
| 9 | + font-weight: bold; |
| 10 | + } |
| 11 | + </style> |
7 | 12 | </head>
|
8 | 13 |
|
9 | 14 | <body>
|
10 | 15 | <form>
|
11 | 16 | <label>Email</label>
|
12 |
| - <input type="text" id="email"> |
| 17 | + <br/> |
| 18 | + <input type="text" id="email" style="width: 100%"> |
13 | 19 | <p>This is the email address that summary emails will be sent to.</p>
|
14 | 20 | <br/>
|
15 | 21 | <label>Alias</label>
|
| 22 | + <br/> |
16 | 23 | <input type="text" id="alias">
|
17 | 24 | <p>This is an optional alias added to the email address to make it easier to filter summary emails.</p>
|
18 | 25 | <p>For example, if the email address is test@example.org, and the alias is summary, summary emails are sent to test+summary@example.org.</p>
|
19 | 26 | <br/>
|
20 |
| - <label>Model</label> |
| 27 | + <label for="model">Model</label> |
| 28 | + <br/> |
21 | 29 | <select id="model">
|
22 |
| - <option value="llama3.1">llama3.2</option> |
| 30 | + <option value="llama3.1">llama3.1</option> |
23 | 31 | <option value="llama3.2">llama3.2</option>
|
24 |
| - <option value="llama3.3">llama3.2</option> |
| 32 | + <option value="llama3.3">llama3.3</option> |
25 | 33 | <option value="phi4">phi4</option>
|
26 | 34 | </select>
|
27 | 35 | <p>This is the model used to summarize the email. These models must be
|
28 | 36 | pulled by Ollama with the command "ollama pull <modelname>".</p>
|
29 | 37 | <br/>
|
30 | 38 | <label>Context Window</label>
|
31 |
| - <input type="text" id="contextwindow"> |
| 39 | + <br/> |
| 40 | + <select id="contextwindow"> |
| 41 | + <option value="2048">2048</option> |
| 42 | + <option value="4096">4096</option> |
| 43 | + <option value="8192">8192</option> |
| 44 | + <option value="16384">16384</option> |
| 45 | + <option value="32768">32768</option> |
| 46 | + <option value="131072">131072</option> |
| 47 | + </select> |
32 | 48 | <p>This is the size of the context window. Larger sizes allow larger
|
33 | 49 | emails to be summarized, but consume more memory and take longer.</p>
|
34 | 50 | <br/>
|
|
0 commit comments