【参考资信】已接入满血版deepseek的平台列表

已知的一些已经接入满血版deepseek的平台列表,供选择:

序号推荐指数A平台名A地址版本1版本2是否免费响应速度多轮对话登录限制联网搜索
1DeepSeek官网https://chat.deepseek.com/满血R1V3免费直连
2100秘塔搜索https://metaso.cn满血R1免费直连
3100腾讯元宝http://yuanbao.tencent.com/满血R1免费直连
4100百度官网https://www.baidu.com/满血R1免费直连
5100火山方舟https://www.volcenqine.com/experience/ark满血R1部分免费直连
6100知乎直答https://zhida.zhihu.com/满血R1免费直连
7100天工AIhttps://www.tiangong.cn/满血R1免费直连
870跃问https://yuewen.cn/chats/new满血R1免费直连
970问小白https://www.wenxiaobai.com/chat/DeepseekR1满血R1免费直连
1070无问芯穹https://cloud.infini-ai.com/genstudio满血R1V3免费直连
1170百度云千帆https://console.bce.baidu.com/qianfan/ais/console/onlineTest/LLM/DeepSeek-R1满血R1免费直连
1245华为小艺https://xiaoyi.huawei.com/chat/满血R1V3免费直连
1345国家超算互联网平台https://chat.scnet.cn/#/home多版本免费直连

其他补充:

  1. 中国移动云盘AI助手

    • 集成DeepSeek-R1满血版,无需API直接使用
    • 通过移动云盘客户端访问
    • 官网:中国移动云盘App 
  2. 国家超算SCNet

  3. 腾讯元宝

  4. 当贝AI

  5. 问小白

 API调用类平台(需注册获取Key)

  1. DeepSeek官方平台

    • 新用户注册赠送10元,可调用API接口
    • 支持模型:deepseek-chat(升级为V3)和deepseek-reasoner(R1)
    • 官网:https://platform.deepseek.com 
  2. 硅基流动(SiliconFlow)

    • 新用户赠14元或2000万Tokens(不同活动)
    • 支持企业级部署,可邀请好友获取更多Tokens
    • 官网:https://cloud.siliconflow.cn 
  3. 天翼云“息壤”智算平台

  4. 火山引擎(方舟大模型)

  5. 英伟达NIM微服务

    • 个人用户免费1000次调用,企业用户5000次
    • 基于NVIDIA H200系统,高性能推理
    • 官网:https://build.nvidia.com 
  6. 无问芯穹大模型平台

  7. 百度智能云千帆

 注意:信息具有时效性,使用时,请查询各官网最新信息。

这段代码实现了在 uniapp 中新增图片上传,其中包括以下步骤: 1. 在模板中通过 `uni-upload` 组件实现文件上传: ``` <template> <div> <div> <div>单个文件上传</div> <uni-upload :name="'1'" :file-list="fileList1" :max-count="1" :show-file-list="true" :preview-image="true" @after-read="afterRead"></uni-upload> </div> <div> <div>多个文件上传</div> <uni-upload :name="'2'" :file-list="fileList2" :max-count="3" :show-file-list="true" :preview-image="true" @after-read="afterRead"></uni-upload> </div> </div> </template> ``` 2. 在 `afterRead` 方法中实现文件上传: ``` async afterRead(event) { let lists = [].concat(event.file) let fileListLen = this[`fileList${event.name}`].length lists.map((item) => { this[`fileList${event.name}`].push({ ...item, status: 'uploading', message: '上传中' }) }) for (let i = 0; i < lists.length; i++) { const result = await this.uploadFilePromise(lists[i].url) let item = this[`fileList${event.name}`][fileListLen] this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, { status: 'success', message: '', url: result })) fileListLen++ } } ``` 3. 在 `uploadFilePromise` 方法中使用 Promise 实现文件上传: ``` uploadFilePromise(url) { return new Promise((resolve, reject) => { let a = uni.uploadFile({ url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址 filePath: url, name: 'file', formData: { user: 'test' }, success: (res) => { setTimeout(() => { resolve(res.data.data) }, 1000) } }); }) } ``` 这样就可以在 uniapp 中实现图片上传了。需要注意的是,此处的代码中使用了 `async/await` 和 Promise,需要在项目中启用 async/await 语法和 Promise 支持。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

正经教主

有钱捧个钱场,没钱捧个人场👌

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值