mirror of
https://github.com/ArthurDanjou/artagents.git
synced 2026-01-14 12:14:40 +01:00
- Introduced new API endpoints for chat management including posting and retrieving chat messages. - Implemented file upload and deletion functionalities for chat and other files. - Added utility functions for streaming text and loading chat data. - Created TypeScript types for models and agents used in the application. - Configured TypeScript settings for server and project. - Added favicon and workspace configuration for pnpm.
11 lines
312 B
Vue
11 lines
312 B
Vue
<template>
|
|
<NuxtRouteAnnouncer />
|
|
<NuxtLoadingIndicator />
|
|
<UApp>
|
|
<UContainer class="z-50 relative">
|
|
<AppHeader />
|
|
<NuxtPage class="mt-12 min-h-[calc(100vh-12rem)] max-h-[calc(100vh-12rem)] md:min-h-[calc(100vh-8rem)] md:max-h-[calc(100vh-8rem)]" />
|
|
</UContainer>
|
|
</UApp>
|
|
</template>
|