全新首发uniapp+deepseek-v4三端通用智能ai助手

爆肝一周升级uniapp+vue3+markdown+mphtml 快速接入deepseek-v4 大模型,从0-1构建web+小程序端+app端通用流式输出智能ai对话模板。

uniapp-ai跨端ai项目支持暗黑+浅色 主题、新增深度思考链、复制代码、katex数学公式、链接跳转、图片预览 等功能。支持运行到H5+小程序+App端

功能支持性

  • 支持深度思考链【三端】✨
  • 支持kaTex数学公式【三端】✨
  • 支持mermaid图表【仅H5】✨
  • 支持代码块滚动粘性、横向滚动、行号、复制代码【三端】✨
  • 支持表格、链接、图片预览【三端】✨

Vite8+DeepSeek-V4网页版AI助手|vue3+arco本地web版ai流式问答系统

Electron41+Vite8+DeepSeek-V4桌面端AI助手|electron+vue3流式ai系统

Flutter3.41+DeepSeek V4智能AI应用|flutter3+getx+dio流式ai对话app模板

tauri2.10+deepseek v4+vite7客户端ai系统|Tauri2+Vue3.5桌面AI程序Exe

flutter3.41+deepseek-v4+dio+getx纯手搓桌面客户端ai流式智能对话系统

vite8.0+deepseek-v4流式ai模板|vue3.5+vant4+markdown打字输出ai助手

项目结构目录

支持编译到web端,在pc页面以750px 宽度布局,h5端支持mermaid图表渲染功能。

uni-app环境变量.env

ini 复制代码
# 项目名称
VITE_APPNAME = 'Uniapp-DeepSeek'

# 运行端口
VITE_PORT = 5173

# DeepSeek API配置
VITE_DEEPSEEK_API_KEY = 替换为你的APIKey
VITE_DEEPSEEK_BASE_URL = https://api.deepseek.com

项目通用布局

xml 复制代码
<template>
    <uv3-layout>
        <!-- 导航栏 -->
        <template #header>
            <Toolbar :title="chatSession?.title" />
        </template>
        <view v-if="chatSession && !isEmpty(chatSession.data)" class="vu__chatview flexbox flex-col">
            <scroll-view :scroll-into-view="scrollIntoView" scroll-y="true" @scrolltolower="onScrollToLower" @scroll="onScroll" style="height: 100%;">
                <view class="vu__chatbot">
                    ...
                </view>
                <view id="scrollbottom-placeholder" style="height: 1px;"></view>
            </scroll-view>
            <!-- 滚动到底部 -->
            <view class="vu__scrollbottom" @click="scrollToBottom"><text class="iconfont ai-arrD fw-700"></text></view>
        </view>
        <!-- 欢迎信息 -->
        <view v-else class="vu__welcomeinfo">
            <view class="intro flex-c flex-col">
                <view class="logo flex-c" style="gap: 15px;">
                    <view class="iconfont ai-deepseek" style="font-size: 40px;"></view>
                    <text style="color: #999; font-size: 20px;">+</text>
                    <image src="/static/uni.png" mode="widthFix" style="height: 30px; width: 30px;" />
                </view>
                <view class="name"><text class="txt text-gradient">嘿~ Uniapp-DeepSeek</text></view>
                <view class="desc">我可以帮你写代码、答疑解惑、写作各种创意内容,请把你的任务交给我吧~</view>
            </view>
            <view class="prompt">
                <view class="tip flex-c"><text class="flex1">试试这样问</text><view class="flex-c" @click="refreshPrompt">换一换<uni-icons type="refreshempty" color="#999" size="14" /></view></view>
                <view v-for="(item,index) in promptList" :key="index">
                    <view class="option" @click="changePrompt(item.prompt)">{{item.emoji}} {{item.prompt}} <text class="arrow iconfont ai-arrR c-999"></text></view>
                </view>
            </view>
        </view>
        <template #footer>
            <view :style="{'padding-bottom': keyboardHeight + 'px'}">
                <ChatEditor ref="editorRef" v-model="promptValue" :scrollBottom="scrollToBottom" />
            </view>
        </template>
    </uv3-layout>
</template>

uni-app支持三端渲染markdown组件

这次升级迭代,替换原先rich-text组件为mp-html 来渲染markdown内容。支持小程序katex/代码复制/图片预览等功能。

修复微信小程序里一些常用标签table、h1-h6 hr...,导致样式会失效问题。

xml 复制代码
<template>
    <view class="ua__markdown">
        <mp-html :content="parseNodes" @linktap="handleLinkTap" />
    </view>
</template>

组件配置

go 复制代码
const props = defineProps({
    // 解析内容
    source: String,
    // 是否显示代码块行号(关闭后性能更优)
    showLine: { type: [Boolean, String], default: true },
    // 开启katex
    katex: { type: Boolean, default: true },
    // markdown-it插件配置
    plugins: {
        type: Array,
        default: () => []
    },
})

uni-app+deepseek流式sse打字效果

小程序端使用uni.request开启 enableChunked 实现流式,H5和App端采用renderjs方式fetch来实现流式功能。

  • 小程序sse
kotlin 复制代码
// #ifdef MP-WEIXIN
try {
    this.loading = true
    this.answerText = ''
    this.reasoningText = ''
    this.lastUpdate = 0
    
    // 发起新请求前终止旧请求
    const requestTask = await uni.request({
        url: baseURL+'/v1/chat/completions',
        method: 'POST',
        header: {
            "Content-Type": "application/json",
            "Authorization": `Bearer ${apiKEY}`,
        },
        data: {
            // 多轮会话
            messages: this.multiConversation ? this.historySession : [{role: 'user', content: editorValue}],
            // 对话模型(快速模式deepseek-v4-flash 专家模式deepseek-v4-pro)
            model: 'deepseek-v4-flash',
            // 是否深度思考
            thinking: {'type': this.chatState.thinkingEnabled ? 'enabled' : 'disabled'},
            stream: true, // 流式输出
            max_tokens: 8192, // 限制一次请求中模型生成 completion 的最大 token 数(默认使用 4096)
            temperature: 0.4, // 严谨采样 越低越严谨(默认1)
        },
        enableChunked: true, //开启分块传输 transfer-encoding chunked
        success: (res) => {
            const { statusCode } =  res
            if (statusCode !== 200) {
                // 手动处理错误码
                console.error('请求失败,状态码:', statusCode)
                this.loading = false
                this.answerText = ''
                this.reasoningText = ''
                uni.showToast({
                    title: errorMsgCode[statusCode],
                    icon: 'none'
                })
                return
            }
            console.log('request success', res)
        },
        fail: (error) => {
            console.log('request fail', error)
            this.loading = false
            this.answerText = ''
            this.reasoningText = ''
            uni.showToast({
                title: error.errMsg,
                icon: 'none'
            })
        }
    })
    requestTask.onChunkReceived((res) => {
        // console.log('Received chunk', res)
        
        // ...
    })
} catch (error) {
    this.loading = false
    this.chatState.updateSession(this.botKey, {loading: false})
    throw new Error(`request error: ${error.message || '请求异常'}`)
}
// #endif
  • h5/app端sse
kotlin 复制代码
// H5和APP端调用renderjs里的fetch
// #ifdef APP-PLUS || H5
this.fetchAppH5({
    url: baseURL+'/v1/chat/completions',
    method: 'POST',
    headers: {
        "Content-Type": "application/json",
        "Authorization": `Bearer ${apiKEY}`,
    },
    body: {
        // 多轮会话
        messages: this.multiConversation ? this.historySession : [{role: 'user', content: editorValue}],
        // 对话模型(快速模式deepseek-v4-flash 专家模式deepseek-v4-pro)
        model: 'deepseek-v4-flash',
        // 是否深度思考
        thinking: {'type': this.chatState.thinkingEnabled ? 'enabled' : 'disabled'},
        stream: true, // 流式输出
        max_tokens: 8192, // 限制一次请求中模型生成 completion 的最大 token 数(默认使用 4096)
        temperature: 0.4, // 严谨采样 越低越严谨(默认1)
    }
})
// #endif

最后附上几个最新实战项目

Flutter3.41+Dart3.11从0-1纯手撸微信聊天APP原生应用

最新版Flutter3.41+Dart3.11仿写抖音APP直播+短视频+聊天应用程序

Flutter3.41实战微信桌面端聊天程序|flutter3仿微信客户端Exe聊天室

爆肝flutter3.41+dart3.11+getx+dio仿写deepseek智能ai应用app

基于electron38+vite7+vue3 setup+elementPlus电脑端仿微信/QQ聊天软件

electron38.2-vue3os系统|Vite7+Electron38+Pinia3+ArcoDesign桌面版OS后台管理

基于flutter3.32+window_manager仿macOS/Wins风格桌面os系统

2026实战uniapp+vue3+mphtml调用deepseek【小程序+安卓+H5】流式输出ai

vite8.0-webai网页版AI模板|vue3+vite8+deepseek专属web版流式ai回答助手

Electron41 + Vite8 + Vue3.5实战打造你的专属AI回答助手

2026最新款Tauri2.10+Vite7.3+DeepSeek桌面版AI系统Exe

2025最新款Electron38+Vite7+Vue3+ElementPlus电脑端后台系统Exe

基于uniapp+vue3+uvue短视频+聊天+直播app系统

基于uni-app+vue3+uvui跨三端仿微信app聊天模板【h5+小程序+app】

自研tauri2.0+vite6.x+vue3+rust+arco-design桌面版os管理系统Tauri2-ViteOS

相关推荐
小林ixn1 小时前
从 List 切片到 LLM 调用:一篇搞定 Python 基础与 AI 接口
python·ai编程
wangruofeng1 小时前
DeepSeek 和小米都在降价,为什么公司反而快烧不起 Token 了?
llm·deepseek
sugar__salt1 小时前
从Python列表切片到LLM接口实战:零基础AI编程落地教程
开发语言·python·ai·prompt·transformer·ai编程
守口如瓶先生2 小时前
Python列表与AI接口实战:从基础到应用
ai编程
2501_915106322 小时前
深入解析HTTPS抓包原理、中间人攻击及反抓包技术攻防
数据库·网络协议·ios·小程序·https·uni-app·iphone
小小小小小鹿2 小时前
Vibe Coding 全栈实战:章鱼哥解题 04|从后端回答到流式对话界面
ai编程·vibecoding
Wonderful U2 小时前
用AI重构规范落地的“最后一公里”
ai编程
游戏开发爱好者83 小时前
React Grab工具详解:AI助力Vue3、Svelte和Solid前端元素调试
android·ios·小程序·https·uni-app·iphone·webview