Spaces:
Running
Running
Synced repo using 'sync_with_huggingface' Github Action
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ import asyncio
|
|
11 |
load_dotenv(dotenv_path="/.env")
|
12 |
|
13 |
# Set page config
|
14 |
-
st.set_page_config(page_title="
|
15 |
|
16 |
# Configuration parameters
|
17 |
QUALITY_THRESHOLD = 4.0 # Threshold for acceptable response quality
|
@@ -333,7 +333,7 @@ def refine_responses(question: str, model: str, evaluation: Dict) -> Tuple[str,
|
|
333 |
|
334 |
|
335 |
def meta_chat(question: str) -> Dict:
|
336 |
-
"""Process user question through the
|
337 |
iteration = 0
|
338 |
refinement_history = []
|
339 |
|
|
|
11 |
load_dotenv(dotenv_path="/.env")
|
12 |
|
13 |
# Set page config
|
14 |
+
st.set_page_config(page_title="LLMs on Trial", layout="wide")
|
15 |
|
16 |
# Configuration parameters
|
17 |
QUALITY_THRESHOLD = 4.0 # Threshold for acceptable response quality
|
|
|
333 |
|
334 |
|
335 |
def meta_chat(question: str) -> Dict:
|
336 |
+
"""Process user question through the LLMs on Trial system."""
|
337 |
iteration = 0
|
338 |
refinement_history = []
|
339 |
|