+ Manage custom LLM definitions stored in the custom_llm2 table. Each entry has
+ a public_id and a JSON definition that is validated against{' '}
+ CustomLlmDefinitionSchema.
+
+
+ {isLoading ? (
+
Loading...
+ ) : (
+
+
+
+ Public ID
+ Display Name
+ Internal ID
+ Base URL
+ Actions
+
+
+
+ {data?.items.length === 0 && (
+
+
+ No custom LLMs defined yet.
+
+
+ )}
+ {data?.items.map(item => (
+
+ {item.public_id}
+ {item.definition.display_name}
+ {item.definition.internal_id}
+
+ {item.definition.base_url}
+
+
+