Spaces:
Runtime error
Runtime error
GNU nano 8.3 ossy1.py | |
import gradio as gr | |
import requests | |
import json | |
import os | |
from dotenv import load_dotenv | |
# Load environment variables for API key | |
load_dotenv() | |
# Get API key from environment variables - this is now hidden from users | |
OPENROUTER_API_KEY = os.environ.get("OPENROUTER_API_KEY", "") | |
if not OPENROUTER_API_KEY: | |
print("Warning: OPENROUTER_API_KEY not found in environment variables.") | |
print("Please set it before running the app or the app won't function.") | |
def answer_bible_question(question, temperature=0.7, max_tokens=1000): | |
""" | |
Send a Bible question to the DeepSeek model via OpenRouter API | |
and return the response. | |
""" | |
[ Read 176 lines ] | |
^G Help ^O Write Out ^F Where Is ^K Cut ^T Execute ^C Location | |
^X Exit ^R Read File ^\ Replace ^U Paste ^J Justify ^/ Go To Line | |