superlazycoder commited on
Commit
67e5d1d
·
verified ·
1 Parent(s): eb9f632

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -1,5 +1,9 @@
1
  import streamlit as st
2
  import random
 
 
 
 
3
 
4
  # Define the moves
5
  moves = ["Rock", "Paper", "Scissors"]
 
1
  import streamlit as st
2
  import random
3
+ import google.generativeai as genai
4
+
5
+ GOOGLE_API_KEY = "api"
6
+ genai.configure(api_key=GOOGLE_API_KEY)
7
 
8
  # Define the moves
9
  moves = ["Rock", "Paper", "Scissors"]