@extends('layouts.app') @section('title', $agentConfig->name . ' - ' . config('app.name', 'CurioGPT')) @section('container-class', 'flex min-h-0 flex-1 w-full') @push('head') @vite(['resources/js/chat.js']) @endpush @section('content') {{-- Conversation history sidebar --}} @unless ($agentConfig->history_is_disabled) @endunless {{-- Chat pane --}}
@if (!empty($agentConfig->allowed_models))
@endif {{-- Messages feed --}}
{{-- Input area --}}
{{-- Turn limit reached banner (hidden by default) --}}
{{ __('app.common.enter_to_send') }} · {{ __('app.common.shift_enter_new_line') }}
{{ __('app.chat.ai_disclaimer') }}
{{-- UI templates for chat.js (for localization-friendly HTML) --}} {{-- Turn counter text template (JS replaces :used and :limit) --}} {{-- Small templates for dynamic icon/text swaps --}} @endsection