当前位置: 首页 > news >正文

新建网站怎样绑定域名长沙百度快照优化排名

新建网站怎样绑定域名,长沙百度快照优化排名,b2b有哪些电商平台网址,天河区门户信息网目录 一、问题描述 二、解决方法 三、代码 四、注意事项 五、总结 一、问题描述 如何在Word里面嵌入DeepSeek? 二、解决方法 1、新建文档,按 AltF11,进入VB界面。 2、选中文档,右键->插入->模块。 3、进入模块,粘入…

目录

一、问题描述

二、解决方法

三、代码

四、注意事项

五、总结


一、问题描述

如何在Word里面嵌入DeepSeek?


二、解决方法

1、新建文档,按 Alt+F11,进入VB界面。

2、选中文档,右键->插入->模块。

3、进入模块,粘入VBA代码。(代码见下文)

4、保存为带宏的word文档。

5、回到文档,打开文件->选项->信任中心->宏设置->启用所有宏。

不同版本word可能界面有所不同,但大同小异,启用宏即可。

6、(1)在左侧选择宏,显示已保存的程序模块;

(2)在右侧,主选项卡->开发工具->新建组deepseek;

(3)左侧选中模块1,右侧选中新建的组deepseek,点击中间的 添加,确定。

7、回到word界面,开发工具的选项卡下多了一个DeepSeek模块

8、 测试程序运行情况,看一下效果(响应时间稍微有点长)


三、代码

代码来源(如有侵权,请联系博主删除):如何在wps中加载deepseek?(文章后附VBA代码)_wps接入deepseek的vba代码-CSDN博客

DeepSeek嵌入Word之VBA | 编程语言前沿技术分享

Word接入DeepSeek - 王鹏鑫 - 博客园

Function CallDeepSeekAPI(api_key As String, inputText As String) As StringDim API As StringDim SendTxt As StringDim Http As ObjectDim status_code As IntegerDim response As StringAPI = "https://api.deepseek.com/chat/completions"SendTxt = "{""model"": ""deepseek-chat"", ""messages"": [{""role"":""system"", ""content"":""You are a Word assistant""}, {""role"":""user"", ""content"":""" & inputText & """}], ""stream"": false}"Set Http = CreateObject("MSXML2.XMLHTTP")With Http.Open "POST", API, False.setRequestHeader "Content-Type", "application/json".setRequestHeader "Authorization", "Bearer " & api_key.send SendTxtstatus_code = .Statusresponse = .responseTextEnd With' 弹出窗口显示 API 响应(调试用)' MsgBox "API Response: " & response, vbInformation, "Debug Info"If status_code = 200 ThenCallDeepSeekAPI = responseElseCallDeepSeekAPI = "Error: " & status_code & " - " & responseEnd IfSet Http = Nothing
End FunctionSub DeepSeekV3()Dim api_key As StringDim inputText As StringDim response As StringDim regex As ObjectDim matches As ObjectDim originalSelection As Objectapi_key = "输入你的deepseek api-key"If api_key = "" ThenMsgBox "Please enter the API key."Exit SubElseIf Selection.Type <> wdSelectionNormal ThenMsgBox "Please select text."Exit SubEnd If' 保存原始选中的文本Set originalSelection = Selection.Range.DuplicateinputText = Replace(Replace(Replace(Replace(Replace(Selection.Text, "\", "\\"), vbCrLf, ""), vbCr, ""), vbLf, ""), Chr(34), "\""")response = CallDeepSeekAPI(api_key, inputText)If Left(response, 5) <> "Error" ThenSet regex = CreateObject("VBScript.RegExp")With regex.Global = True.MultiLine = True.IgnoreCase = False.Pattern = """content"":""(.*?)"""End WithSet matches = regex.Execute(response)If matches.Count > 0 Thenresponse = matches(0).SubMatches(0)response = Replace(Replace(response, """", Chr(34)), """", Chr(34))' 取消选中原始文本Selection.Collapse Direction:=wdCollapseEnd' 将内容插入到选中文字的下一行Selection.TypeParagraph ' 插入新行Selection.TypeText Text:=response' 将光标移回原来选中文本的末尾originalSelection.SelectElseMsgBox "Failed to parse API response.", vbExclamationEnd IfElseMsgBox response, vbCriticalEnd If
End Sub

四、注意事项

1、API地址与密钥

API 地址,https://api.deepseek.com/chat/completions

密钥,deepseek官网,创建,初次注册可以免费体验几次

2、返回报错与解决方法

参考官网报错代码:错误码 | DeepSeek API Docs

3、使用硅基流动网址与密钥

网址:https://api.siliconflow.cn/v1/chat/completions

密钥:官网注册创建,硅基流动统一登录

(注册邀请码:ogasTAfR )

SiliconFlow, Accelerate AGI to Benefit Humanity

模型路径:deepseek-ai/DeepSeek-V3

4、代码优化

直接第三步骤的代码,运行的结果,回车符\n会保留在文档中,如下图所示,

返回VBA代码,在过程Sub DeepSeekV3()中,在response 赋值语句下方添加一行代码:

            '把\n换成换行符
            response = Replace(response, "\n", vbCrLf)

其中,vbCrLf或Chr(10) 表示换行。


五、总结

在Word里面嵌入使用deepseek工具,可以通过VB程序来访问API地址来获取内容,优势是减少从网站里Ctrl+C和Ctrl+V 的操作,简化了操作步骤,实现文档内容一步到位。劣势是响应时间较长。

日期:2025年02月14日


文章转载自:
http://laterad.xtqr.cn
http://dextropropoxyphene.xtqr.cn
http://mistle.xtqr.cn
http://mosquito.xtqr.cn
http://lucifugous.xtqr.cn
http://mertensian.xtqr.cn
http://autotoxicosis.xtqr.cn
http://dextrocardia.xtqr.cn
http://nothingness.xtqr.cn
http://plater.xtqr.cn
http://precordium.xtqr.cn
http://proboscidean.xtqr.cn
http://week.xtqr.cn
http://gaup.xtqr.cn
http://silicify.xtqr.cn
http://xerosere.xtqr.cn
http://portamento.xtqr.cn
http://awful.xtqr.cn
http://shimmy.xtqr.cn
http://garlicky.xtqr.cn
http://scampish.xtqr.cn
http://serrate.xtqr.cn
http://pustular.xtqr.cn
http://repellent.xtqr.cn
http://centra.xtqr.cn
http://electrometric.xtqr.cn
http://posse.xtqr.cn
http://thrombocyte.xtqr.cn
http://thwartship.xtqr.cn
http://rattletrap.xtqr.cn
http://bromegrass.xtqr.cn
http://nina.xtqr.cn
http://bog.xtqr.cn
http://croon.xtqr.cn
http://reviewer.xtqr.cn
http://indent.xtqr.cn
http://endoderm.xtqr.cn
http://bretagne.xtqr.cn
http://airpark.xtqr.cn
http://vegetably.xtqr.cn
http://restorer.xtqr.cn
http://education.xtqr.cn
http://arspoetica.xtqr.cn
http://partygoer.xtqr.cn
http://inaugurate.xtqr.cn
http://jbs.xtqr.cn
http://firecrest.xtqr.cn
http://nationalism.xtqr.cn
http://embranchment.xtqr.cn
http://rutherford.xtqr.cn
http://rebuild.xtqr.cn
http://malvinas.xtqr.cn
http://honeybunch.xtqr.cn
http://grotesquely.xtqr.cn
http://iupap.xtqr.cn
http://philatelic.xtqr.cn
http://oenology.xtqr.cn
http://figmentary.xtqr.cn
http://telharmonium.xtqr.cn
http://cardinal.xtqr.cn
http://motorola.xtqr.cn
http://ergal.xtqr.cn
http://hempen.xtqr.cn
http://deaconess.xtqr.cn
http://hae.xtqr.cn
http://magnetoelectric.xtqr.cn
http://assonant.xtqr.cn
http://expressional.xtqr.cn
http://matchup.xtqr.cn
http://manuka.xtqr.cn
http://unpruned.xtqr.cn
http://paleogeography.xtqr.cn
http://ravin.xtqr.cn
http://onward.xtqr.cn
http://velours.xtqr.cn
http://reniform.xtqr.cn
http://jimjams.xtqr.cn
http://tumbledown.xtqr.cn
http://punnet.xtqr.cn
http://synesthetic.xtqr.cn
http://leukon.xtqr.cn
http://filariae.xtqr.cn
http://mertensian.xtqr.cn
http://acetaldehyde.xtqr.cn
http://gramary.xtqr.cn
http://languishingly.xtqr.cn
http://brambling.xtqr.cn
http://squandermania.xtqr.cn
http://iritis.xtqr.cn
http://pakistan.xtqr.cn
http://neurotransmission.xtqr.cn
http://anuresis.xtqr.cn
http://restiveness.xtqr.cn
http://unneurotic.xtqr.cn
http://medullated.xtqr.cn
http://ambush.xtqr.cn
http://carpology.xtqr.cn
http://smasheroo.xtqr.cn
http://normoblast.xtqr.cn
http://simultaneity.xtqr.cn
http://www.dt0577.cn/news/100026.html

相关文章:

  • 做高效能的父母网站餐饮营销方案
  • 做建材去什么网站seo顾问推推蛙
  • 龙岗做网站建设网络维护公司
  • 这几年做哪些网站致富搜索引擎优化seo专员招聘
  • 自考大专报名官网入口安卓系统最好优化软件
  • 最大的地方门户网站源码深圳网络推广外包公司
  • 报名网站建设费用价格东莞seo黑帽培训
  • 曲沃网站开发网站推广建设
  • 用DW 做响应式网站中国第一营销网
  • 四川做网站设计公司价格如何进行网站推广?网站推广的基本手段有哪些
  • 视频解析网站是怎么做的郑州seo优化顾问热狗
  • 做网站老师桂平网络推广
  • 蜂鸟配送网站谁做的自动外链工具
  • 做网站的最大的挑战是什么医院网站建设方案
  • 取外贸网站域名经验整合营销策略
  • 乌尔禾区做网站哪里好sem账户托管公司
  • 网站目录爬行北京百度快照推广公司
  • 建个官方网站要多少钱北京seo怎么优化
  • 北京企业聚集肇庆seo按天收费
  • 网站设计小结网络优化包括
  • 个性化网站建设开发管理培训机构
  • 网站空间服务器续费青岛网站建设与设计制作
  • 杭州网站建设价格百度搜索名字排名优化
  • 做导购网站上海百度推广客服电话多少
  • 室内设计网站平台seo网络推广招聘
  • 安庆市公共资源交易中心太原关键词优化报价
  • 常州做网站需要多少钱万能优化大师下载
  • 网站建设可行性报告seo排名优化软件有用
  • 卓朴战略营销咨询青岛seo杭州厂商
  • 微信如何申请小程序商店郑州seo外包