Tonic commited on
Commit
00aec15
Β·
unverified Β·
1 Parent(s): 173be96

attempts to improve mcp

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -139,9 +139,7 @@ def chat_handler(
139
  chat_history: list = None
140
  ):
141
  """
142
- Handles a single chat interaction with the Kimina Prover model, a state-of-the-art large language model for formal mathematical theorem proving in Lean 4, developed by Project Numina and the Kimi teams [[Kimina-Prover-Preview]](https://github.com/MoonshotAI/Kimina-Prover-Preview/tree/master).
143
-
144
- The Kimina Prover model is designed for competition-style problem solving and rigorous formal reasoning, achieving state-of-the-art results on the miniF2F benchmark. It supports long context windows (up to 32K tokens) and is capable of both formal and informal mathematical reasoning. This function manages prompt construction, model inference, and output formatting for the Gradio interface, enabling interactive theorem proving and mathematical problem solving.
145
 
146
  Args:
147
  user_message (str): The user's input message or formal statement to be solved or discussed by the model. This can be a Lean 4 goal, theorem, or mathematical problem statement.
 
139
  chat_history: list = None
140
  ):
141
  """
142
+ Handles a single chat interaction with the Kimina Prover model designed for competition-style problem solving and rigorous formal reasoning, achieving state-of-the-art results on the miniF2F benchmark. It supports long context windows (up to 32K tokens) and is capable of both formal and informal mathematical reasoning. This function manages prompt construction, model inference, and output formatting for the Gradio interface, enabling interactive theorem proving and mathematical problem solving.
 
 
143
 
144
  Args:
145
  user_message (str): The user's input message or formal statement to be solved or discussed by the model. This can be a Lean 4 goal, theorem, or mathematical problem statement.