Update frontend/src/App.js
Browse files- frontend/src/App.js +1 -1
frontend/src/App.js
CHANGED
@@ -152,7 +152,7 @@ const App = () => {
|
|
152 |
<tbody>
|
153 |
{filteredAndSortedData.map((item, index) => {
|
154 |
const displayModelId = item.agent_action_type === "tool-calling" || item.agent_action_type === "tool_calling"
|
155 |
-
? `${item.model_id} -
|
156 |
: item.model_id;
|
157 |
return (
|
158 |
<tr key={index}>
|
|
|
152 |
<tbody>
|
153 |
{filteredAndSortedData.map((item, index) => {
|
154 |
const displayModelId = item.agent_action_type === "tool-calling" || item.agent_action_type === "tool_calling"
|
155 |
+
? `${item.model_id} - <i>JSON</i>`
|
156 |
: item.model_id;
|
157 |
return (
|
158 |
<tr key={index}>
|