当前位置:   article > 正文

阿里云AI通义千问api:Python脚本助力内容生成_通义千问批处理数据集如何用代码实现

通义千问批处理数据集如何用代码实现

这段代码展示了如何使用 Dashscope 库结合阿里云提供的千问聊天模型(Q-Chat)来自动生成内容。它从 Excel 文件读取提示词和标题,使用这些提示词调用 API 生成文本,然后将生成的内容保存为 Markdown 文件。这种方式对于需要大量内容且希望自动化这一过程的自媒体创作者来说尤其有用。

  1. # For prerequisites running the following sample, visit https://help.aliyun.com/document_detail/611472.html
  2. from http import HTTPStatus
  3. import pandas as pd
  4. import os
  5. import dashscope
  6. dashscope.api_key = ''
  7. def call_with_messages(prompt):
  8. try:
  9. messages = [{'role': 'system', 'content': 'You are a helpful assistant.'},
  10. {'role': 'user', 'content': prompt}]
  11. response = dashscope.Generation.call(
  12. dashscope.Generation.Models.qwen_plus, # 模型选择
  13. messages=messages,
  14. max_tokens=1500, # 最大字数限制
  15. top_p=0.8, # 多样性设置
  16. repetition_penalty=1.1, # 重复惩罚设置
  17. temperature=1.0, # 随机性设置
  18. result_format='message', # 结果格式
  19. )
  20. return response
  21. except Exception as e:
  22. print(f"生成故事时发生错误: {e}")
  23. return None
  24. def read_excel_and_generate_stories(file_path, sheet_name, prompt_column, title_column):
  25. try:
  26. # 读取Excel文件
  27. df = pd.read_excel(file_path, sheet_name=sheet_name)
  28. except Exception as e:
  29. print(f"读取Excel文件时发生错误: {e}")
  30. return
  31. for index, row in df.iterrows():
  32. try:
  33. prompt = row[prompt_column]
  34. title = row[title_column]
  35. response = call_with_messages(prompt)
  36. if response and response.status_code == HTTPStatus.OK:
  37. output = response.output
  38. if output and output.get("choices"):
  39. message = output["choices"][0].get("message")
  40. if message:
  41. content = message.get("content")
  42. # 创建文件名和路径
  43. file_name = f'{title}.md'
  44. output_path = os.path.join(r'D:\wenjian\obsidian\笔记\自媒体\AI生成', file_name)
  45. # 保存到md文件
  46. with open(output_path, 'w', encoding='utf-8') as file:
  47. file.write(content)
  48. print(f'结果已保存到文件:{output_path}')
  49. else:
  50. print(f'请求失败,状态码:{response.status_code}')
  51. except Exception as e:
  52. print(f"处理Excel行时发生错误: {e}")
  53. if __name__ == '__main__':
  54. excel_file_path = r"D:\wenjian\onedrive\Desktop\自媒体.xlsx"
  55. read_excel_and_generate_stories(excel_file_path, '古诗词', '提示词', '名称')

代码解析

  1. 导入必要的库: 使用http处理HTTP状态。 pandas用于读取和处理Excel文件。 os处理文件和目录路径。 dashscope是一个Python库,用于调用阿里云的聊天生成模型。
  2. 设置API密钥: dashscope.api_key需设置为有效的API密钥。
  3. 定义文本生成函数: call_with_messages函数接收一个提示词,并调用Dashscope的Generation模型生成文本。
  4. 读取Excel文件: read_excel_and_generate_stories函数从Excel文件读取数据,循环遍历每一行,从中提取提示词和标题。
  5. 调用API和保存生成的内容: 对于每一行数据,使用call_with_messages函数生成内容。 若调用成功,将内容保存为Markdown文件。

代码的实际应用

这个脚本可以在多个领域内发挥作用,例如:

  • 自媒体内容创作:自动生成文章、博客或社交媒体帖子。
  • 教育材料制作:自动生成教育和学习材料。
  • 创意写作辅助:为作家提供创意启发和内容草稿。

应用场景

  • 内容营销:快速生成营销文案和故事。
  • 个性化产品:为个性化内容平台生成定制化文本。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/524615
推荐阅读
相关标签
  

闽ICP备14008679号