Skip to content

Commit 9874d86

Browse files
committed
Add disclaimer, link to research paper, etc.
Include a disclaimer, link to the research paper and references to JudgeGPT.
1 parent b4a0ef8 commit 9874d86

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

app.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
from pymongo.server_api import ServerApi
1212

1313
__name__ = "RogueGPT"
14-
__version__ = "0.9.2"
14+
__version__ = "0.9.3"
1515
__author__ = "Alexander Loth"
1616
__email__ = "Alexander.Loth@microsoft.com"
17+
__research_paper__ = "https://arxiv.org/abs/2404.03021"
1718
__report_a_bug__ = "https://github.com/aloth/RogueGPT/issues"
1819

1920
# Constants
@@ -321,7 +322,10 @@ def load_json(filename):
321322

322323

323324
# UI to input news fragment details
324-
st.title("News Ingestion")
325+
st.title("RogueGPT: News Ingestion")
326+
327+
st.markdown("*Disclaimer:* [RogueGPT](https://github.com/aloth/RogueGPT/) is part of the [JudgeGPT research project](https://github.com/aloth/JudgeGPT/).")
328+
st.markdown("Learn more about the impact of Generative AI on fake news through our [open access paper](" + __research_paper__ + ").")
325329

326330
tab_generaor, tab_manual = st.tabs(["Generator", "Manual Data Entry"])
327331

0 commit comments

Comments
 (0)