@extends('layouts.site') @section('page_class', 'page-models') @section('title', 'AI 模型推荐 - AIWeb') @section('meta_description', '按模态、部署方式与评分维度筛选 AI 模型,快速完成选型。') @section('canonical', route('models.index')) @section('content') @php $icons = ['bi-chat-square-text', 'bi-collection', 'bi-image', 'bi-mic']; $resetModalityFilters = array_filter([ 'q' => $filters['q'] ?? null, 'deployment' => $filters['deployment'] ?? null, ], fn ($value) => $value !== null && $value !== ''); @endphp
收录模型 {{ $modelStats['total'] ?? 0 }}
AIWEB.CN

AI模型推荐

按效果、成本与速度三维比较,快速筛选适配业务场景的模型方案。

收录模型{{ $modelStats['total'] ?? 0 }}
多模态{{ $modelStats['multimodal'] ?? 0 }}
API部署{{ $modelStats['api'] ?? 0 }}
7天更新{{ $modelStats['updated_7d'] ?? 0 }}

模型列表

@if($items->isNotEmpty())
@foreach($items as $model)
{{ $model->name }}
{{ $model->provider ?: '未知供应商' }} · {{ $model->deployment_mode ?: '未标注部署' }}

{{ $model->summary }}

总分 {{ $model->total_score }} 详情
@endforeach
{{ $items->links() }}
@else

暂无符合条件的模型数据

@endif
@endsection