15 lines
503 B
Vue
15 lines
503 B
Vue
<script lang="ts" setup>
|
|
const triplit = useTriplitClient();
|
|
|
|
const props = defineProps<{
|
|
model: ModelWithProvider;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="p-3 text-white flex max-w-full items-center justify-between gap-2 group hover:bg-[var(--color-highlight-low)] transition duration-200 ease-[cubic-bezier(0.5,_1,_0.89,_1)]">
|
|
<ModelInfo :model="model" :show-edit="true" :show-cost="true" :show-external-id="true"
|
|
:show-release-date="true" />
|
|
</div>
|
|
</template> |