Spaces:
Runtime error
Runtime error
File size: 553 Bytes
0471209 2846ff5 c349adc 2846ff5 0471209 2846ff5 0471209 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
from model import load_model, answer
from components import create_app_layout
import torch
# Check if a GPU is available; otherwise, use the CPU
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
# Load the model and tokenizer
model, tokenizer = load_model()
model.to(device)
# Define the function for Gradio to call
def gradio_answer_fn(query):
return answer(model, tokenizer, query)
# Create the app layout
app = create_app_layout(gradio_answer_fn)
# Launch the app
if __name__ == "__main__":
app.launch(share=True)
|