kaikaidai commited on
Commit
87703e5
·
verified ·
1 Parent(s): a4f0a79

Synced repo using 'sync_with_huggingface' Github Action

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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="Meta-GPT", layout="wide")
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 Meta-GPT system."""
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