Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ import spaces
|
|
6 |
from contents import (
|
7 |
pecore_citation,
|
8 |
inseq_citation,
|
|
|
9 |
description,
|
10 |
examples,
|
11 |
how_it_works_intro,
|
@@ -505,6 +506,7 @@ with gr.Blocks(css=custom_css) as demo:
|
|
505 |
gr.Code(pecore_citation, interactive=False, label="PECoRe (Sarti et al., 2024)")
|
506 |
gr.Markdown("If you use the Inseq implementation of PECoRe (<a href=\"https://inseq.org/en/latest/main_classes/cli.html#attribute-context\"><code>inseq attribute-context</code></a>, including this demo), please also cite:")
|
507 |
gr.Code(inseq_citation, interactive=False, label="Inseq (Sarti et al., 2023)")
|
|
|
508 |
with gr.Row(elem_classes="footer-container"):
|
509 |
with gr.Column():
|
510 |
gr.Markdown(powered_by)
|
|
|
6 |
from contents import (
|
7 |
pecore_citation,
|
8 |
inseq_citation,
|
9 |
+
inseq_xai_citation,
|
10 |
description,
|
11 |
examples,
|
12 |
how_it_works_intro,
|
|
|
506 |
gr.Code(pecore_citation, interactive=False, label="PECoRe (Sarti et al., 2024)")
|
507 |
gr.Markdown("If you use the Inseq implementation of PECoRe (<a href=\"https://inseq.org/en/latest/main_classes/cli.html#attribute-context\"><code>inseq attribute-context</code></a>, including this demo), please also cite:")
|
508 |
gr.Code(inseq_citation, interactive=False, label="Inseq (Sarti et al., 2023)")
|
509 |
+
gr.Code(inseq_xai_citation, interactive=False, label="Inseq v0.6 (Sarti et al., 2024)")
|
510 |
with gr.Row(elem_classes="footer-container"):
|
511 |
with gr.Column():
|
512 |
gr.Markdown(powered_by)
|