Commit ·
6334852
1
Parent(s): 523a66c
added emoji
Browse files
app.py
CHANGED
|
@@ -37,7 +37,7 @@ def chat(Mode, Me, Teammate, Opponents, history):
|
|
| 37 |
print(Teammate)
|
| 38 |
message += f' with {teammate_string} on my team, '
|
| 39 |
if not Opponents:
|
| 40 |
-
message += "how should
|
| 41 |
else:
|
| 42 |
message += f' how do we counter{process_squad(Opponents)}?'
|
| 43 |
if Mode == "Bronze":
|
|
@@ -108,6 +108,6 @@ demo2 = gr.Interface(
|
|
| 108 |
allow_flagging="never",
|
| 109 |
css="footer {visibility: hidden}"
|
| 110 |
)
|
| 111 |
-
demo = gr.TabbedInterface([demo1, demo2], ["Overwatch 2 Coach", "Valorant Coach"],title="GPT-3
|
| 112 |
#if __name__ == "__main__":
|
| 113 |
demo.launch()
|
|
|
|
| 37 |
print(Teammate)
|
| 38 |
message += f' with {teammate_string} on my team, '
|
| 39 |
if not Opponents:
|
| 40 |
+
message += "how should we play to win games?"
|
| 41 |
else:
|
| 42 |
message += f' how do we counter{process_squad(Opponents)}?'
|
| 43 |
if Mode == "Bronze":
|
|
|
|
| 108 |
allow_flagging="never",
|
| 109 |
css="footer {visibility: hidden}"
|
| 110 |
)
|
| 111 |
+
demo = gr.TabbedInterface([demo1, demo2], ["Overwatch 2 Coach", "Valorant Coach"],title="GPT-3 Coaching 🤖",css="footer {visibility: hidden}")
|
| 112 |
#if __name__ == "__main__":
|
| 113 |
demo.launch()
|