glenn-parham commited on
Commit
45bda04
1 Parent(s): 1c38bfc

creating app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ header_markdown = """## Large Language Models at US Department of Defense 🇺🇸
2
+
3
+ <img src="https://github.com/deptofdefense/LLMs-at-DoD/blob/main/LLM_USGOVT.png?raw=true" width="200">
4
+
5
+ Hey! I'm a Gradio template made for Large Language Model demos at the United States Department of Defense.
6
+
7
+ **Distrust & Verify**: Large Language Models are prone to generating hallucinated & inaccurate text. The end user of this demo is 100% responsible for verifying the veracity of any text generated.
8
+
9
+ **Responsible AI**: The DoD is committed to the ethical practitioning of any and all Artificial Intelligence. Make sure you're abiding by the tenents of Responsible AI by visiting DoD's Official [Responsible AI Toolkit](https://rai.tradewindai.com).
10
+ """
11
+
12
+ import gradio as gr
13
+
14
+ with gr.Blocks() as demo:
15
+ # gr.Image("https://github.com/deptofdefense/LLMs-at-DoD/blob/main/LLM_USGOVT.png?raw=true")
16
+ gr.Markdown(header_markdown)
17
+
18
+ demo.launch()