adjust jinja template
This commit is contained in:
parent
bc25d92c95
commit
c5b30d985c
|
@ -105,9 +105,9 @@ def home():
|
|||
if default_backend_info['queued'] == 0 and default_backend_info['queued'] >= opts.concurrent_gens:
|
||||
# There will be a wait if the queue is empty but prompts are processing, but we don't
|
||||
# know how long.
|
||||
default_estimated_wait_sec = f"less than {default_backend_info['estimated_wait']} seconds"
|
||||
default_estimated_wait_sec = f"less than {int(default_backend_info['estimated_wait'])} seconds"
|
||||
else:
|
||||
default_estimated_wait_sec = f"{default_backend_info['estimated_wait']} seconds"
|
||||
default_estimated_wait_sec = f"{int(default_backend_info['estimated_wait'])} seconds"
|
||||
|
||||
if len(config['analytics_tracking_code']):
|
||||
analytics_tracking_code = f"<script>\n{config['analytics_tracking_code']}\n</script>"
|
||||
|
|
|
@ -163,7 +163,7 @@
|
|||
<strong>OpenAI-Compatible API URL:</strong> {{ value.openai_client_api }}
|
||||
</p>
|
||||
<p><strong>Context Size:</strong> {{ value.context_size }}</p>
|
||||
<p><strong>Average Generation Time:</strong> {{ value.avg_generation_time | int }}</p>
|
||||
<p><strong>Average Generation Time:</strong> {{ value.avg_generation_time | int }} seconds</p>
|
||||
</div>
|
||||
<br>
|
||||
{% endfor %}
|
||||
|
|
Reference in New Issue