BuildPlay / app.py
Kim Adams
retooling the game mapper
a7e7b92
raw
history blame contribute delete
315 Bytes
import gradio as gr
import openai
from home_view import ui_home as home
from utilities import api_keys
openai.api_key = api_keys.APIKeys().get_key('OPENAI_API_KEY')
eleven_api_key = api_keys.APIKeys().get_key('ELEVEN_LABS_API_KEY')
voice_id = api_keys.APIKeys().get_key('VOICE_ID')
combo=home.combo
combo.launch()