Spaces:
Sleeping
Sleeping
File size: 310 Bytes
1d710c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# app.py
import streamlit as st
from rag_engine import RAGEngine
# Initialize app
st.title("Honkai Star Rail Build Assistant 🔥")
# Initialize RAG
rag = RAGEngine()
# User input
query = st.text_input("Ask about a character build:")
if query:
response = rag.answer_query(query)
st.write(response)
|