@extends('layouts.app') @section('css') @endsection @section('content')
@csrf

{{ __('AI File Chat') }}

{{ __('Analyze the content of your Word/PDF/CSV documents with the help of AI') }}
{{ __('Your Balance is') }} @if (auth()->user()->gpt_3_turbo_credits == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->gpt_3_turbo_credits + auth()->user()->gpt_3_turbo_credits_prepaid) }} @endif {{ __('GPT 3.5 Turbo') }} {{ __('Words') }}
@foreach ($chats as $chat) @if ($loop->first) @endif
@if ($chat->type == 'pdf') @elseif ($chat->type == 'csv') @elseif ($chat->type == 'docx') file_type_word @endif {{ __($chat->title) }}
{{ $chat->url }}
{{ $chat->messages }} {{ __('messages') }}
{{ \Carbon\Carbon::parse($chat->updated_at)->diffForhumans() }}
@endforeach
Avatar
{{ __('AI File Bot') }}
{{ __('Document Analyst Expert') }}
{{ __('Hey there, I can help you get any insights out of your Word/PDF/CSV documents, what would you like to know?') }}
{{ __('Hey there, I can help you with analyzing any Word/PDF/CSV documents that share with me') }}
{{ __('Select and upload your documents to get started') }}

@endsection @section('js') @endsection