added video URL to README. minor touch ups
Browse files- README.md +1 -1
- app.py +0 -2
- utils/constants.py +2 -0
README.md
CHANGED
@@ -9,7 +9,7 @@ app_file: app.py
|
|
9 |
pinned: true
|
10 |
license: apache-2.0
|
11 |
short_description: 'Universal F1 data retrieval and agentic race strategy.'
|
12 |
-
video_url:
|
13 |
tags:
|
14 |
- 'mcp-server-track'
|
15 |
- 'agent-demo-track'
|
|
|
9 |
pinned: true
|
10 |
license: apache-2.0
|
11 |
short_description: 'Universal F1 data retrieval and agentic race strategy.'
|
12 |
+
video_url: https://www.loom.com/share/bfa4e3e5d70d47f9bce406a0714893fd?sid=634b543c-684e-4872-b926-14cbb56396de
|
13 |
tags:
|
14 |
- 'mcp-server-track'
|
15 |
- 'agent-demo-track'
|
app.py
CHANGED
@@ -135,10 +135,8 @@ iface_constructor_info = gr.Interface(
|
|
135 |
)
|
136 |
|
137 |
|
138 |
-
|
139 |
# About introduction tab
|
140 |
with gr.Blocks() as markdown_tab:
|
141 |
-
#gr.Markdown(MARKDOWN_INTRODUCTION)
|
142 |
gr.HTML(HTML_INTRODUCTION)
|
143 |
|
144 |
|
|
|
135 |
)
|
136 |
|
137 |
|
|
|
138 |
# About introduction tab
|
139 |
with gr.Blocks() as markdown_tab:
|
|
|
140 |
gr.HTML(HTML_INTRODUCTION)
|
141 |
|
142 |
|
utils/constants.py
CHANGED
@@ -216,6 +216,8 @@ HTML_INTRODUCTION = f"""
|
|
216 |
<li>OpenF1 Tools: Access the OpenF1 API directly within the MCP server, allowing a LLM to interact with the API using natural language.</li>
|
217 |
</ul>
|
218 |
""" + """
|
|
|
|
|
219 |
|
220 |
<h2>MCP json configuration file</h2>
|
221 |
<p>For MCP clients that support SSE transport (For Claude desktop see below), the following configuration can be used in your <code>mcp.json</code> file (or its equivalent):</p>
|
|
|
216 |
<li>OpenF1 Tools: Access the OpenF1 API directly within the MCP server, allowing a LLM to interact with the API using natural language.</li>
|
217 |
</ul>
|
218 |
""" + """
|
219 |
+
<h2>Acknowledgements</h2>
|
220 |
+
<p>Many thanks to Hugging Face, especially to the Gradio team for setting up this exciting Hackaton. Thanks to the external providers for their models and API credits.</p>
|
221 |
|
222 |
<h2>MCP json configuration file</h2>
|
223 |
<p>For MCP clients that support SSE transport (For Claude desktop see below), the following configuration can be used in your <code>mcp.json</code> file (or its equivalent):</p>
|