【解决方案】如何基于大语言模型和MaxKB实现PPT自动天生方案 ...

打印 上一主题 下一主题

主题 983|帖子 983|积分 2949

一、实现方案

利用讯飞大模型智能 PPT 天生接口实现,具体参见:讯飞开放平台智能PPT天生 https://www.xfyun.cn/services/aippt#anchor4503211

二、新增函数

2.1函数脚本
  1. # -*- coding:utf-8 -*-
  2. import hashlib
  3. import hmac
  4. import base64
  5. import json
  6. import time
  7. import requests
  8. from requests_toolbelt.multipart.encoder import MultipartEncoder
  9. class AIPPT():
  10.     def __init__(self, APPId, APISecret, Text, templateId):
  11.         self.APPid = APPId
  12.         self.APISecret = APISecret
  13.         self.text = Text
  14.         self.header = {}
  15.         self.templateId = templateId
  16.     # 获取签名
  17.     def get_signature(self, ts):
  18.         try:
  19.             # 对app_id和时间戳进行MD5加密
  20.             auth = self.md5(self.APPid + str(ts))
  21.             # 使用HMAC-SHA1算法对加密后的字符串进行加密
  22.             return self.hmac_sha1_encrypt(auth, self.APISecret)
  23.         except Exception as e:
  24.             print(e)
  25.             return None
  26.     def hmac_sha1_encrypt(self, encrypt_text, encrypt_key):
  27.         # 使用HMAC-SHA1算法对文本进行加密,并将结果转换为Base64编码
  28.         return base64.b64encode(
  29.             hmac.new(encrypt_key.encode('utf-8'), encrypt_text.encode('utf-8'), hashlib.sha1).digest()).decode('utf-8')
  30.     def md5(self, text):
  31.         # 对文本进行MD5加密,并返回加密后的十六进制字符串
  32.         return hashlib.md5(text.encode('utf-8')).hexdigest()
  33.     # 创建PPT生成任务
  34.     def create_task(self):
  35.         url = 'https://zwapi.xfyun.cn/api/ppt/v2/create'
  36.         timestamp = int(time.time())
  37.         signature = self.get_signature(timestamp)
  38.         # body= self.getbody(self.text)
  39.         formData = MultipartEncoder(
  40.             fields={
  41.                 # "file": (path, open(path, 'rb'), 'text/plain'),  # 如果需要上传文件,可以将文件路径通过path 传入
  42.                 # "fileUrl":"",   #文件地址(file、fileUrl、query必填其一)
  43.                 # "fileName":"",   # 文件名(带文件名后缀;如果传file或者fileUrl,fileName必填)
  44.                 "query": self.text,
  45.                 "templateId": "20240718489569D",  # 模板的ID,从PPT主题列表查询中获取
  46.                 "author": "XXXX",  # PPT作者名:用户自行选择是否设置作者名
  47.                 "isCardNote": str(True),  # 是否生成PPT演讲备注, True or False
  48.                 "search": str(False),  # 是否联网搜索,True or False
  49.                 "isFigure": str(True),  # 是否自动配图, True or False
  50.                 "aiImage": "normal"
  51.                 # ai配图类型: normal、advanced (isFigure为true的话生效); normal-普通配图,20%正文配图;advanced-高级配图,50%正文配图
  52.             }
  53.         )
  54.         print(formData)
  55.         headers = {
  56.             "appId": self.APPid,
  57.             "timestamp": str(timestamp),
  58.             "signature": signature,
  59.             "Content-Type": formData.content_type
  60.         }
  61.         self.header = headers
  62.         print(headers)
  63.         response = requests.request(method="POST", url=url, data=formData, headers=headers).text
  64.         print("生成PPT返回结果:", response)
  65.         resp = json.loads(response)
  66.         if (0 == resp['code']):
  67.             return resp['data']['sid']
  68.         else:
  69.             print('创建PPT任务失败')
  70.             return None
  71.     # 构建请求body体
  72.     def getbody(self, text):
  73.         body = {
  74.             "query": text,
  75.             "templateId": self.templateId  # 模板ID举例,具体使用 /template/list 查询
  76.         }
  77.         return body
  78.     # 轮询任务进度,返回完整响应信息
  79.     def get_process(self, sid):
  80.         # print("sid:" + sid)
  81.         if (None != sid):
  82.             response = requests.request("GET", url=f"https://zwapi.xfyun.cn/api/ppt/v2/progress?sid={sid}",
  83.                                         headers=self.header).text
  84.             print(response)
  85.             return response
  86.         else:
  87.             return None
  88.     # 获取PPT,以下载连接形式返回
  89.     def get_result(self, task_id):
  90.         # 创建PPT生成任务
  91.         # task_id = self.create_task()
  92.         # PPTurl = ''
  93.         # 轮询任务进度
  94.         while (True):
  95.             response = self.get_process(task_id)
  96.             resp = json.loads(response)
  97.             pptStatus = resp['data']['pptStatus']
  98.             aiImageStatus = resp['data']['aiImageStatus']
  99.             cardNoteStatus = resp['data']['cardNoteStatus']
  100.             if ('done' == pptStatus and 'done' == aiImageStatus and 'done' == cardNoteStatus):
  101.                 PPTurl = resp['data']['pptUrl']
  102.                 break
  103.             else:
  104.                 time.sleep(3)
  105.         return PPTurl
  106.     def getHeaders(self):
  107.         timestamp = int(time.time())
  108.         signature = self.get_signature(timestamp)
  109.         # body = self.getbody(self.text)
  110.         headers = {
  111.             "appId": self.APPid,
  112.             "timestamp": str(timestamp),
  113.             "signature": signature,
  114.             "Content-Type": "application/json; charset=utf-8"
  115.         }
  116.         return headers
  117.     def getTheme(self):
  118.         url = "https://zwapi.xfyun.cn/api/ppt/v2/template/list"
  119.         self.header = self.getHeaders()
  120.         body = {
  121.             "payType": "not_free",
  122.             # "style": "简约",    # 支持按照类型查询PPT 模板
  123.             # "color": "红色",   #  支持按照颜色查询PPT 模板
  124.             # "industry": "教育培训",    # 支持按照颜色查询PPT 模板
  125.             "pageNum": 2,
  126.             "pageSize": 10
  127.         }
  128.         response = requests.request("GET", url=url, headers=self.header).text
  129.         print(response)
  130.         return response
  131.     def createOutline(self):
  132.         # if('' ==fileUrl and '' == filePath):
  133.         url = "https://zwapi.xfyun.cn/api/ppt/v2/createOutline"
  134.         body = {
  135.             "query": self.text,
  136.             "language": "cn",
  137.             "search": str(False),  # 是否联网搜索,True or False
  138.         }
  139.         response = requests.post(url=url, json=body, headers=self.getHeaders()).text
  140.         print("生成大纲完成:\n", response)
  141.         return response
  142.     def createOutlineByDoc(self, fileName, fileUrl=None, filePath=None):
  143.         # if('' ==fileUrl and '' == filePath):
  144.         url = "https://zwapi.xfyun.cn/api/ppt/v2/createOutlineByDoc"
  145.         formData = MultipartEncoder(
  146.             fields={
  147.                 "file": (filePath, open(filePath, 'rb'), 'text/plain'),  # 如果需要上传文件,可以将文件路径通过path 传入
  148.                 "fileUrl": fileUrl,  # 文件地址(file、fileUrl必填其一)
  149.                 "fileName": fileName,  # 文件名(带文件名后缀;如果传file或者fileUrl,fileName必填)
  150.                 "query": self.text,
  151.                 "language": "cn",
  152.                 "search": str(False),  # 是否联网搜索,True or False
  153.             }
  154.         )
  155.         timestamp = int(time.time())
  156.         signature = self.get_signature(timestamp)
  157.         headers = {
  158.             "appId": self.APPid,
  159.             "timestamp": str(timestamp),
  160.             "signature": signature,
  161.             "Content-Type": formData.content_type
  162.         }
  163.         self.header = headers
  164.         response = requests.post(url=url, data=formData, headers=headers).text
  165.         print("生成大纲完成:\n", response)
  166.         return response
  167.     def createPptByOutline(self, outline):
  168.         url = "https://zwapi.xfyun.cn/api/ppt/v2/createPptByOutline"
  169.         body = {
  170.             "query": self.text,
  171.             "outline": outline,
  172.             "templateId": self.templateId,  # 模板的ID,从PPT主题列表查询中获取
  173.             "author": "XXXX",  # PPT作者名:用户自行选择是否设置作者名
  174.             "isCardNote": True,  # 是否生成PPT演讲备注, True or False
  175.             "search": False,  # 是否联网搜索,True or False
  176.             "isFigure": True,  # 是否自动配图, True or False
  177.             "aiImage": "normal",
  178.             # ai配图类型: normal、advanced (isFigure为true的话生效); normal-普通配图,20%正文配图;advanced-高级配图,50%正文配图
  179.         }
  180.         print(body)
  181.         response = requests.post(url, json=body, headers=self.getHeaders()).text
  182.         print("创建生成任务成功:\n", response)
  183.         resp = json.loads(response)
  184.         if (0 == resp['code']):
  185.             return resp['data']['sid']
  186.         else:
  187.             print('创建PPT任务失败')
  188.             return None
  189. def generate_ppt(count):
  190.     # 控制台获取
  191.     APPId = "*****"
  192.     APISecret = "************"
  193.     # 查询PPT主题列表
  194.     # demo1 = AIPPT(APPId,APISecret,'','')
  195.     # templateId = demo1.getTheme() # 获取模板列表
  196.     # print("支持模板列表:\n",templateId)
  197.     templateId = "20240718489569D"  # 该模板ID,需要通过getTheme() 方法获取模板列表,然后从中挑选
  198.     # 流程一:根据描述或者文档直接生成PPT;(流程一、流程二代码不能同时打开)
  199.     # # 流程一开始
  200.     Text = count
  201.     demo = AIPPT(APPId, APISecret, Text, templateId)
  202.     taskid = demo.create_task()
  203.     # # 流程一结束
  204.     # 流程二: 先生成大纲(支持上传文本),再通过大纲生成PPT;(流程一、流程二代码不能同时打开)
  205.     # # 流程二开始
  206.     # title = "秋分时节的农业管理策略"   #设定大纲主题
  207.     # filename = "test.pdf" # 需要根据文档上传时,请填写文档路径;要求:字数不得超过8000字,文件限制10M。上传文件支持pdf(不支持扫描件)、doc、docx、txt、md格式的文件。
  208.     # filePath = "data/test.pdf" # 文件路径,也可以通过fileurl 字段上传对象存储地址,具体见方法:createOutlineByDoc
  209.     # demo = AIPPT(APPId, APISecret, title, templateId)
  210.     # res = demo.createOutlineByDoc(fileName=filename,filePath=filePath)
  211.     # data = json.loads(res)
  212.     # outline = data["data"]["outline"]
  213.     # taskid = demo.createPptByOutline(outline)
  214.     # # 流程二结束
  215.     result = demo.get_result(taskid)
  216.     print("生成的PPT请从此地址获取:\n" + result)
  217.     return result
复制代码
2.2函数参数配置

如下图所示添加 count 参数:

三、设计流程

使用 MaxKB 中的高级编排,其中工作流编排流程如下所示:

其中指定回复使用 Office Online Viewer 展示 PPT。
[code][/code]四、效果展示


相关资料:
MaxKB在线使用手册:https://maxkb.cn/docs/
MaxKB安装包:https://maxkb.cn/docs/installation/offline_installtion/

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

知者何南

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表