+
+ Name
+ {tagDetails.name}
+
+
+ Description
+ {tagDetails.description || "-"}
+
+
+
Allowed LLMs
+
+ {tagDetails.models.length === 0 ? (
+ All Models
+ ) : (
+ tagDetails.models.map((modelId) => (
+
+
+ {tagDetails.model_info?.[modelId] || modelId}
+
+
+ ))
+ )}
+
+
+
+ Created
+ {tagDetails.created_at ? new Date(tagDetails.created_at).toLocaleString() : "-"}
+
+
+ Last Updated
+ {tagDetails.updated_at ? new Date(tagDetails.updated_at).toLocaleString() : "-"}
+
+
+