Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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"]
|