Update frontend/src/App.js
Browse files- frontend/src/App.js +2 -2
frontend/src/App.js
CHANGED
|
@@ -36,7 +36,7 @@ const App = () => {
|
|
| 36 |
const fetchData = async () => {
|
| 37 |
try {
|
| 38 |
setLoading(true);
|
| 39 |
-
const response = await fetch('https://smolagents-
|
| 40 |
if (!response.ok) {
|
| 41 |
throw new Error(`HTTP error! status: ${response.status}`);
|
| 42 |
}
|
|
@@ -78,7 +78,7 @@ const App = () => {
|
|
| 78 |
<div className="header">
|
| 79 |
<h1 className="title">Smolagents Leaderboard</h1>
|
| 80 |
<p className="subtitle">How do different LLMs compare for powering agents?</p>
|
| 81 |
-
<p className="subtitle">Uses <a href="https://github.com/huggingface/smolagents">smolagents</a> with <a href="https://huggingface.co/datasets/smolagents
|
| 82 |
</div>
|
| 83 |
|
| 84 |
<div className="search-container">
|
|
|
|
| 36 |
const fetchData = async () => {
|
| 37 |
try {
|
| 38 |
setLoading(true);
|
| 39 |
+
const response = await fetch('https://smolagents-smolagents-llm-leaderboard.hf.space/api/results');
|
| 40 |
if (!response.ok) {
|
| 41 |
throw new Error(`HTTP error! status: ${response.status}`);
|
| 42 |
}
|
|
|
|
| 78 |
<div className="header">
|
| 79 |
<h1 className="title">Smolagents Leaderboard</h1>
|
| 80 |
<p className="subtitle">How do different LLMs compare for powering agents?</p>
|
| 81 |
+
<p className="subtitle">Uses <a target="_blank" href="https://github.com/huggingface/smolagents">smolagents</a> with <a target="_blank" href="https://huggingface.co/datasets/smolagents/benchmark-v1">smolagents benchmark</a>.</p>
|
| 82 |
</div>
|
| 83 |
|
| 84 |
<div className="search-container">
|