Update app.py
Browse files
app.py
CHANGED
|
@@ -48,10 +48,10 @@ gradio.utils.watchfn_spaces = _noop
|
|
| 48 |
|
| 49 |
mcp = gr.Interface(
|
| 50 |
fn=position_evaluation,
|
| 51 |
-
inputs = [gr.Textbox(label = "FEN", value = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1", lines=2)],
|
| 52 |
outputs = [gr.Textbox(label = "Evaluation", interactive = False, lines=2)],
|
| 53 |
title="Stockfish Chess Engine",
|
| 54 |
-
description="Chess position evaluation by top chess engine"
|
| 55 |
)
|
| 56 |
|
| 57 |
mcp.launch(mcp_server=True, ssr_mode=False)
|
|
|
|
| 48 |
|
| 49 |
mcp = gr.Interface(
|
| 50 |
fn=position_evaluation,
|
| 51 |
+
inputs = [gr.Textbox(label = "Forsyth-Edwards Notation (FEN)", value = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1", lines=2)],
|
| 52 |
outputs = [gr.Textbox(label = "Evaluation", interactive = False, lines=2)],
|
| 53 |
title="Stockfish Chess Engine",
|
| 54 |
+
description="Chess position evaluation by top open source chess engine"
|
| 55 |
)
|
| 56 |
|
| 57 |
mcp.launch(mcp_server=True, ssr_mode=False)
|