AI大模型探索之路-实战篇:智能化IT领域搜索引擎的构建与初步实践

系列篇章💥

No.文章
1AI大模型探索之路-实战篇:智能化IT领域搜索引擎的构建与初步实践
2AI大模型探索之路-实战篇:智能化IT领域搜索引擎之GLM-4大模型技术的实践探索
3AI大模型探索之路-实战篇:智能化IT领域搜索引擎之知乎网站数据获取(初步实践)
4AI大模型探索之路-实战篇:智能化IT领域搜索引擎之知乎网站数据获取(函数封装)
5AI大模型探索之路-实战篇:智能化IT领域搜索引擎之知乎网站数据获取(流程优化)
6AI大模型探索之路-实战篇:智能化IT领域搜索引擎之github网站在线搜索
7AI大模型探索之路-实战篇:智能化IT领域搜索引擎之HuggingFace网站在线搜索

目录

  • 系列篇章💥
  • 前言
  • 一、总体概览
    • 1、需求分析
    • 2、技术方案
  • 二、创建Google Cloud Search API(准备工作)
    • 1、Google Cloud 简介
    • 2、Custom Search API概述
    • 3、GoogleCloud平台注册
    • 4、创建项目
    • 5、启用API
    • 6、获取API密钥
  • 三、创建Google Custom Search Engine(准备工作)
    • 1、可编程的搜索引擎简介
    • 2、创建自己的搜索引擎
    • 3、获取cx、配置环境变量
  • 四、Google自定义搜索引擎使用测试
    • 1、页面搜索测试
    • 2、代码调用测试
  • 结语


前言

在信息技术飞速发展的当下,对于专业知识的检索需求正呈现出前所未有的增长态势。为了应对这一挑战,本文将深入探讨如何巧妙地结合大型语言模型的功能调用能力与谷歌搜索引擎API的强大功能,共同打造一个专门针对IT领域的智能在线搜索平台。这个平台不仅能够为用户提供更为精准、高效的搜索结果,还将引领信息技术检索的新潮流,为专业人士带来更加便捷、智能的搜索体验。

一、总体概览

1、需求分析

在构建智能在线搜索平台的过程中,深入的需求分析是至关重要的一步。用户通过输入查询(Prompt)向大型语言模型提出知识性问题,这不仅是用户与系统交互的起点,也是整个搜索流程的核心。当用户提出问题时,我们首先会分析问题的性质和类型,以确定是否需要调用外部搜索引擎进行实时查询。

接下来,如果大型语言模型内置的知识库能够提供答案,则直接回应用户,这样可以大大缩短响应时间,提高搜索效率。然而,若内置知识库无法提供满意的答案,系统将自动触发外部搜索引擎的调用机制,进行实时查询。这一过程中,我们需要确保系统的自动判断逻辑准确无误,以便在内置知识库无法满足需求时,及时且准确地获取外部信息资源。

在这里插入图片描述

2、技术方案

本项目的技术核心由以下三部分组成:
1)利用GLM4大模型的函数调用(Funcation Calling)能力,实现智能调度和规划;
2)使用谷歌搜索引擎提供的API对特定技术平台进行爬取和搜索。
3)结合提示词Prompt的能力实现实现智能在线搜索。
在这里插入图片描述
在技术方案的实施过程中,我们首先利用GLM4大模型的函数调用能力,对用户的查询请求进行智能解析和规划。通过大模型的强大处理能力,我们能够准确理解用户的意图,并快速制定出相应的搜索策略。

随后,我们使用谷歌搜索引擎提供的API接口,对特定的技术平台进行深度爬取和搜索。谷歌搜索引擎作为全球领先的搜索引擎之一,其强大的搜索能力和海量的数据资源,为我们提供了丰富、准确的搜索结果。

最后,我们结合提示词Prompt的能力,进一步提升了搜索的智能化水平。通过精心设计的提示词,我们能够引导大模型更加精准地理解用户的搜索需求,并返回更为符合期望的结果。

二、创建Google Cloud Search API(准备工作)

1、Google Cloud 简介

Google Cloud,全称Google Cloud Platform(GCP),是Google提供的一系列云计算服务和API。它允许个人、企业和政府机构在Google的数据中心上运行其应用程序和存储数据。

2、Custom Search API概述

Google Cloud上的Custom Search API是Google提供的一项服务,允许开发者将Google的搜索功能集成到自己的应用程序中。这项服务特别适用于需要在特定数据集或网站上提供搜索功能的情况。以下是Custom Search API的一些关键特性:

  • 自定义搜索引擎:用户可以创建一个搜索引擎,只搜索他们选择的网站或网页。
  • 编程访问:通过API,开发者可以以编程方式访问搜索结果,并将它们集成到自己的应用程序中。
  • 搜索结果定制:可以定制搜索结果的显示方式,包括排序、过滤和样式。
  • 搜索范围控制:可以指定搜索的范围,例如只搜索特定的网站或排除某些网站。
  • 安全性选项:包括成人内容过滤等安全搜索选项。
  • 使用限制和计费:Custom Search API可能有使用限制和计费要求,具体取决于使用量和功能。

3、GoogleCloud平台注册

登录GoogleCloud平台注册一个账号,有一定的免费额度可以使用;选择一个项目,开始新建项目
在这里插入图片描述

4、创建项目

新增一个项目名称“MyProject001”,地点可以选择无组织
在这里插入图片描述

5、启用API

创建完项目后,启用API和服务(必须启用Custom Search API才能取得凭证)
在这里插入图片描述

输入“google search”搜索,找到自定义搜索的API服务
在这里插入图片描述

启用自定义搜索的API服务
在这里插入图片描述

6、获取API密钥

创建凭证
在这里插入图片描述

创建一个API密钥
在这里插入图片描述

配置环境变量

在这里插入图片描述

三、创建Google Custom Search Engine(准备工作)

1、可编程的搜索引擎简介

地址:https://programmablesearchengine.google.com/
创建自己专属的搜索引擎。
Google可编程的搜索引擎通常指的是Google Custom Search Engine(CSE),这是Google提供的一项服务,允许用户创建定制化的搜索引擎。用户可以利用CSE来搜索指定的网站、网页或整个网络。以下是一些关于Google CSE的主要特点:

  1. 定制化搜索:用户可以自定义搜索结果的显示方式,包括搜索框的样式、搜索结果的布局和排序方式。
  2. 控制搜索范围:用户可以指定搜索引擎搜索的特定网站或网页,或者排除某些网站。
  3. 编程接口:Google CSE提供了编程接口(API),允许开发者通过编程方式集成和控制搜索引擎的行为。
  4. 搜索结果过滤:用户可以设置过滤条件,比如只显示某个时间段内的内容,或者排除某些关键词。
  5. 广告选项:Google CSE允许用户在搜索结果中显示广告,并可能从中获得收入。
  6. 易于集成:用户可以将CSE集成到自己的网站或应用程序中,提供无缝的搜索体验。
  7. 搜索结果优化:用户可以对搜索结果进行优化,以提高搜索的相关性和准确性。
  8. 安全搜索:CSE提供了安全搜索选项,可以过滤掉成人内容或其他不适宜的内容。
  9. 使用限制:Google CSE的使用可能受到一定的限制,比如搜索次数限制或特定的使用条款。
  10. 易于管理:用户可以通过Google的控制面板轻松管理自己的CSE。
    Google Custom Search Engine是一个很好的工具,适用于需要在特定内容上提供搜索功能的网站管理员或开发者。通过定制化的搜索引擎,可以提高用户体验并满足特定的搜索需求。

2、创建自己的搜索引擎

在这里插入图片描述

设置搜索引擎信息

在这里插入图片描述

3、获取cx、配置环境变量

取出搜索引擎的信息,主要是里面的cx,也需要配置到本地的环境变量中
在这里插入图片描述

四、Google自定义搜索引擎使用测试

1、页面搜索测试

通过浏览器页面专用的搜索引擎地址,进行搜索查询测试
在这里插入图片描述

2、代码调用测试

使用Python代码调用Google自定义搜索引擎进行测试:

import os
import requests
from dotenv import load_dotenv

# 加载环境变量
load_dotenv()

# 获取API密钥
API_KEY = os.getenv("GOOGLE_SEARCH_API_KEY")

# 获取搜索引擎ID
CSE_ID = os.getenv("CSE_ID")

# 定义搜索API的URL
url = "https://www.googleapis.com/customsearch/v1"

# 设置查询参数
query = "AIGC"  # 替换为你的查询词
params = {
    "key": API_KEY,
    "cx": CSE_ID,  # 替换为你的搜索引擎ID
    "q": query,
    # 添加其他需要的参数
}

# 发送HTTP请求
response = requests.get(url, params=params)

# 检查请求是否成功
if response.status_code == 200:
    print("请求成功")
    print(response.json())
else:
    print("请求失败")
    print(response.status_code)
#打印结果如下

请求成功

{'kind': 'customsearch#search', 'url': {'type': 'application/json', 'template': 'https://www.googleapis.com/customsearch/v1?q={searchTerms}&num={count?}&start={startIndex?}&lr={language?}&safe={safe?}&cx={cx?}&sort={sort?}&filter={filter?}&gl={gl?}&cr={cr?}&googlehost={googleHost?}&c2coff={disableCnTwTranslation?}&hq={hq?}&hl={hl?}&siteSearch={siteSearch?}&siteSearchFilter={siteSearchFilter?}&exactTerms={exactTerms?}&excludeTerms={excludeTerms?}&linkSite={linkSite?}&orTerms={orTerms?}&dateRestrict={dateRestrict?}&lowRange={lowRange?}&highRange={highRange?}&searchType={searchType}&fileType={fileType?}&rights={rights?}&imgSize={imgSize?}&imgType={imgType?}&imgColorType={imgColorType?}&imgDominantColor={imgDominantColor?}&alt=json'}, 'queries': {'request': [{'title': 'Google Custom Search - AIGC', 'totalResults': '43100000', 'searchTerms': 'AIGC', 'count': 10, 'startIndex': 1, 'inputEncoding': 'utf8', 'outputEncoding': 'utf8', 'safe': 'off', 'cx': '03f7e673e33a64855'}], 'nextPage': [{'title': 'Google Custom Search - AIGC', 'totalResults': '43100000', 'searchTerms': 'AIGC', 'count': 10, 'startIndex': 11, 'inputEncoding': 'utf8', 'outputEncoding': 'utf8', 'safe': 'off', 'cx': '03f7e673e33a64855'}]}, 'context': {'title': 'my-google-search'}, 'searchInformation': {'searchTime': 0.418583, 'formattedSearchTime': '0.42', 'totalResults': '43100000', 'formattedTotalResults': '43,100,000'}, 'items': [{'kind': 'customsearch#result', 'title': 'AI-Generated Content (AIGC): A Survey - NASA/ADS', 'htmlTitle': 'AI-Generated Content (<b>AIGC</b>): A Survey - NASA/ADS', 'link': 'http://ui.adsabs.harvard.edu/abs/2023arXiv230406632W/abstract', 'displayLink': 'ui.adsabs.harvard.edu', 'snippet': 'To address the challenges of digital intelligence in the digital economy, artificial intelligence-generated content (AIGC) has emerged. AIGC uses artificial\xa0...', 'htmlSnippet': 'To address the challenges of digital intelligence in the digital economy, artificial intelligence-generated content (<b>AIGC</b>) has emerged. <b>AIGC</b> uses artificial&nbsp;...', 'formattedUrl': 'http://ui.adsabs.harvard.edu/abs/2023arXiv230406632W/abstract', 'htmlFormattedUrl': 'http://ui.adsabs.harvard.edu/abs/2023arXiv230406632W/abstract', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQzRxmtHKy5uDa2ltbasgB8sar1Xvpi5uSfmcoID2Rw2NkEdxpWqF8mf9Xt&s', 'width': '240', 'height': '210'}], 'metatags': [{'citation_keywords': 'Computer Science - Artificial Intelligence', 'og:image': 'https://ui.adsabs.harvard.edu/styles/img/transparent_logo.svg', 'citation_publication_date': '03/2023', 'prism.startingpage': 'arXiv:2304.06632', 'theme-color': '#ffffff', 'article:published_time': '03/2023', 'citation_title': 'AI-Generated Content (AIGC): A Survey', 'twitter:card': 'summary_large_image', 'og:site_name': 'NASA/ADS', 'apple-mobile-web-app-title': 'NASA ADS', 'citation_journal_title': 'arXiv e-prints', 'citation_date': '03/2023', 'prism.publicationdate': '03/2023', 'og:description': "To address the challenges of digital intelligence in the digital economy, artificial intelligence-generated content (AIGC) has emerged. AIGC uses artificial intelligence to assist or replace manual content generation by generating content based on user-inputted keywords or requirements. The development of large model algorithms has significantly strengthened the capabilities of AIGC, which makes AIGC products a promising generative tool and adds convenience to our lives. As an upstream technology, AIGC has unlimited potential to support different downstream applications. It is important to analyze AIGC's current capabilities and shortcomings to understand how it can be best utilized in future applications. Therefore, this paper provides an extensive overview of AIGC, covering its definition, essential conditions, cutting-edge capabilities, and advanced features. Moreover, it discusses the benefits of large-scale pre-trained models and the industrial chain of AIGC. Furthermore, the article explores the distinc", 'twitter:creator': '@adsabs', 'citation_arxiv_id': 'arXiv:2304.06632', 'twitter:site': '@adsabs', 'dc.source': 'arXiv', 'citation_language': 'en', 'dc.creator': 'Wu, Jiayang', 'application-name': 'NASA ADS', 'msapplication-tilecolor': '#ffc40d', 'prism.publicationname': 'arXiv', 'og:type': 'eprint', 'twitter:title': 'AI-Generated Content (AIGC): A Survey', 'twitter:domain': 'NASA/ADS', 'og:title': 'AI-Generated Content (AIGC): A Survey', 'citation_abstract_html_url': 'https://ui.adsabs.harvard.edu/abs/2023arXiv230406632W/abstract', 'dc.date': '03/2023', 'article:author': 'Wu, Jiayang', 'citation_authors': 'Wu, Jiayang;Gan, Wensheng;Chen, Zefeng;Wan, Shicheng;Lin, Hong', 'twitter:image:src': 'https://ui.adsabs.harvard.edu/styles/img/transparent_logo.svg', 'citation_firstpage': 'arXiv:2304.06632', 'viewport': 'width=device-width, initial-scale=1, shrink-to-fit=no', 'citation_doi': '10.48550/arXiv.2304.06632', 'twitter:description': "To address the challenges of digital intelligence in the digital economy, artificial intelligence-generated content (AIGC) has emerged. AIGC uses artificial intelligence to assist or replace manual content generation by generating content based on user-inputted keywords or requirements. The development of large model algorithms has significantly strengthened the capabilities of AIGC, which makes AIGC products a promising generative tool and adds convenience to our lives. As an upstream technology, AIGC has unlimited potential to support different downstream applications. It is important to analyze AIGC's current capabilities and shortcomings to understand how it can be best utilized in future applications. Therefore, this paper provides an extensive overview of AIGC, covering its definition, essential conditions, cutting-edge capabilities, and advanced features. Moreover, it discusses the benefits of large-scale pre-trained models and the industrial chain of AIGC. Furthermore, the article explores the distinc", 'dc.title': 'AI-Generated Content (AIGC): A Survey', 'dc.identifier': 'doi:10.48550/arXiv.2304.06632', 'og:url': 'https://ui.adsabs.harvard.edu/abs/2023arXiv230406632W/abstract'}], 'cse_image': [{'src': 'https://ui.adsabs.harvard.edu/styles/img/transparent_logo.svg'}]}}, {'kind': 'customsearch#result', 'title': 'AI-Generated Content (AIGC): A Survey', 'htmlTitle': 'AI-Generated Content (<b>AIGC</b>): A Survey', 'link': 'https://arxiv.org/pdf/2304.06632', 'displayLink': 'arxiv.org', 'snippet': 'Relevant technologies of. AIGC will boost the development of artificial intelligence, better serve human society, and achieve sustainable development. Index\xa0...', 'htmlSnippet': 'Relevant technologies of. <b>AIGC</b> will boost the development of artificial intelligence, better serve human society, and achieve sustainable development. Index&nbsp;...', 'formattedUrl': 'https://arxiv.org/pdf/2304.06632', 'htmlFormattedUrl': 'https://arxiv.org/pdf/2304.06632', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSYSWDRFJ7CyOEV2u-ZXpE-TpGMIVcjT8wxLlqPFZnZIETekuZBf1bXW4M&s', 'width': '282', 'height': '178'}], 'metatags': [{'moddate': 'D:20230414003603Z', 'creationdate': 'D:20230414003603Z', 'creator': 'LaTeX with hyperref', 'fullbanner': 'This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) kpathsea version 6.3.2', 'producer': 'pdfTeX-1.40.21'}], 'cse_image': [{'src': 'x-raw-image:///452d4486d6714c8a17e2815bbdee652289264ec2b4e26ca167124c0dafbbf471'}]}, 'mime': 'application/pdf', 'fileFormat': 'PDF/Adobe Acrobat'}, {'kind': 'customsearch#result', 'title': 'Partnering with our industry to advance AI transparency and literacy ...', 'htmlTitle': 'Partnering with our industry to advance AI transparency and literacy ...', 'link': 'https://newsroom.tiktok.com/en-us/partnering-with-our-industry-to-advance-ai-transparency-and-literacy', 'displayLink': 'newsroom.tiktok.com', 'snippet': "May 9, 2024 ... TikTok is starting to automatically label AI-generated content (AIGC) when it's uploaded from certain other platforms. To do this, we're\xa0...", 'htmlSnippet': 'May 9, 2024 <b>...</b> TikTok is starting to automatically label AI-generated content (<b>AIGC</b>) when it&#39;s uploaded from certain other platforms. To do this, we&#39;re&nbsp;...', 'formattedUrl': 'https://newsroom.tiktok.com/.../partnering-with-our-industry-to-advance-ai...', 'htmlFormattedUrl': 'https://newsroom.tiktok.com/.../partnering-with-our-industry-to-advance-ai...', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSpbhK3GwHiq43ZeruhDQaw9o_xlHJuJq8M0wW3JtUvs6n0neJRn-ab-Oem&s', 'width': '224', 'height': '225'}], 'metatags': [{'og:image': 'https://p16-va-tiktok.ibyteimg.com/obj/musically-maliva-obj/cbb89e4982cec8194aacfde65ca26f83.png', 'renderer': 'webkit', 'article:published_time': '2019-08-16T14:00:00.000Z', 'twitter:card': 'summary_large_image', 'og:image:width': '250', 'og:site_name': 'Newsroom | TikTok', 'apple-mobile-web-app-title': 'TikTok', 'applicable-device': 'pc,mobile', 'pumbaa-ctx': 'cb_enabled=0', 'og:description': "Today, we're sharing updates on our continued efforts to help creators safely and responsibly express their creativity with AI-generated content (AIGC). TikTok is starting to automatically label AI-ge", 'article:publisher': 'https://www.facebook.com/tiktok', 'twitter:image': 'https://p16-va-tiktok.ibyteimg.com/obj/musically-maliva-obj/cbb89e4982cec8194aacfde65ca26f83.png', 'next-head-count': '28', 'twitter:site': '@tiktok', 'article:modified_time': '2019-08-16T14:23:59.000Z', 'og:type': 'article', 'twitter:title': 'Partnering with our industry to advance AI transparency and literacy', 'handheldfriendly': 'true', 'og:title': 'Partnering with our industry to advance AI transparency and literacy', 'og:image:height': '250', 'google': 'notranslate', 'article:tag': 'News', 'apple-mobile-web-app-status-bar-style': 'black', 'viewport': 'width=device-width, initial-scale=1.0, viewport-fit=cover', 'apple-mobile-web-app-capable': 'yes', 'twitter:description': "Today, we're sharing updates on our continued efforts to help creators safely and responsibly express their creativity with AI-generated content (AIGC). TikTok is starting to automatically label AI-ge", 'mobile-web-app-capable': 'yes', 'format-detection': 'telephone=no'}], 'cse_image': [{'src': 'https://p16-va-tiktok.ibyteimg.com/obj/musically-maliva-obj/cbb89e4982cec8194aacfde65ca26f83.png'}]}}, {'kind': 'customsearch#result', 'title': 'AIGC | Wolters Kluwer', 'htmlTitle': '<b>AIGC</b> | Wolters Kluwer', 'link': 'https://www.wolterskluwer.com/en/solutions/enablon/partners/aigc', 'displayLink': 'www.wolterskluwer.com', 'snippet': "Artificial Intelligence Global Company (AIGC) is a leader in the Middle East's digital transformation, engineering, technology, and consulting space.", 'htmlSnippet': 'Artificial Intelligence Global Company (<b>AIGC</b>) is a leader in the Middle East&#39;s digital transformation, engineering, technology, and consulting space.', 'formattedUrl': 'https://www.wolterskluwer.com/en/solutions/enablon/partners/aigc', 'htmlFormattedUrl': 'https://www.wolterskluwer.com/en/solutions/enablon/partners/<b>aigc</b>', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS1SwIR26qyl_GlrGMquMQ8oZFm40yZnw2V4kKB9jgM0evADGcaX1ztKwA&s', 'width': '311', 'height': '162'}], 'metatags': [{'og:image': 'https://assets.contenthub.wolterskluwer.com/api/public/content/dec9c2a7d3994ba3b1935ff920178615?v=d2590547', 'twitter:title': 'AIGC', 'twitter:card': 'summary_large_image', 'viewport': 'width=device-width, initial-scale=1, maximum-scale=5', 'twitter:description': "Artificial Intelligence Global Company (AIGC) is a leader in the Middle East's digital transformation, engineering, technology, and consulting space.", 'og:title': 'AIGC', 'og:url': 'https://www.wolterskluwer.com/en/solutions/enablon/partners/aigc', 'og:description': "Artificial Intelligence Global Company (AIGC) is a leader in the Middle East's digital transformation, engineering, technology, and consulting space.", 'twitter:image': 'https://assets.contenthub.wolterskluwer.com/api/public/content/dec9c2a7d3994ba3b1935ff920178615?v=d2590547'}], 'cse_image': [{'src': 'https://assets.contenthub.wolterskluwer.com/api/public/content/dec9c2a7d3994ba3b1935ff920178615?v=d2590547'}]}}, {'kind': 'customsearch#result', 'title': "AIGC Remover in OnePlus 12's latest update : r/oneplus", 'htmlTitle': '<b>AIGC</b> Remover in OnePlus 12&#39;s latest update : r/oneplus', 'link': 'https://www.reddit.com/r/oneplus/comments/1bv2hmq/aigc_remover_in_oneplus_12s_latest_update/', 'displayLink': 'www.reddit.com', 'snippet': 'Apr 3, 2024 ... 48 votes, 37 comments. 1st picture: Original shot before edit 2nd picture: After using AIGC Remover tool.', 'htmlSnippet': 'Apr 3, 2024 <b>...</b> 48 votes, 37 comments. 1st picture: Original shot before edit 2nd picture: After using <b>AIGC</b> Remover tool.', 'formattedUrl': 'https://www.reddit.com/r/.../aigc_remover_in_oneplus_12s_latest_update/', 'htmlFormattedUrl': 'https://www.reddit.com/r/.../<b>aigc</b>_remover_in_oneplus_12s_latest_update/', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbH_OZAeDb864SLeNQ-7OpxlqUFCAblR-HeMfaRBab3ytV93xygrAIuSEn&s', 'width': '194', 'height': '259'}], 'metatags': [{'og:image': 'https://preview.redd.it/aigc-remover-in-oneplus-12s-latest-update-v0-91tfnr6wkbsc1.jpg?width=1080&crop=smart&auto=webp&s=4ac87bbc851581244a4d8877651630186151e713', 'theme-color': '#000000', 'og:image:width': '1080', 'og:type': 'website', 'twitter:card': 'summary_large_image', 'twitter:title': "r/oneplus on Reddit: AIGC Remover in OnePlus 12's latest update", 'og:site_name': 'Reddit', 'og:title': "r/oneplus on Reddit: AIGC Remover in OnePlus 12's latest update", 'og:image:height': '1440', 'msapplication-navbutton-color': '#000000', 'og:description': 'Posted by u/jayv3333 - 48 votes and 37 comments', 'twitter:image': 'https://preview.redd.it/aigc-remover-in-oneplus-12s-latest-update-v0-91tfnr6wkbsc1.jpg?width=1080&crop=smart&auto=webp&s=4ac87bbc851581244a4d8877651630186151e713', 'apple-mobile-web-app-status-bar-style': 'black', 'twitter:site': '@reddit', 'viewport': 'width=device-width, initial-scale=1, viewport-fit=cover', 'apple-mobile-web-app-capable': 'yes', 'og:ttl': '600', 'og:url': 'https://www.reddit.com/r/oneplus/comments/1bv2hmq/aigc_remover_in_oneplus_12s_latest_update/'}], 'cse_image': [{'src': 'https://preview.redd.it/aigc-remover-in-oneplus-12s-latest-update-v0-91tfnr6wkbsc1.jpg?width=1080&crop=smart&auto=webp&s=4ac87bbc851581244a4d8877651630186151e713'}]}}, {'kind': 'customsearch#result', 'title': 'Artificial Intelligence Global Company', 'htmlTitle': '<b>Artificial Intelligence Global Company</b>', 'link': 'https://www.aigcom.com/', 'displayLink': 'www.aigcom.com', 'snippet': "Artificial Intelligence Global Company are a leading technology and IT services player in the Middle East with top companies' client base across all sectors\xa0...", 'htmlSnippet': '<b>Artificial Intelligence Global Company</b> are a leading technology and IT services player in the Middle East with top companies&#39; client base across all sectors&nbsp;...', 'formattedUrl': 'https://www.aigcom.com/', 'htmlFormattedUrl': 'https://www.<b>aigc</b>om.com/', 'pagemap': {'metatags': [{'og:type': 'website', 'twitter:card': 'summary_large_image', 'og:site_name': 'Artificial Intelligence Global Company', 'article:modified_time': '2021-05-11T12:54:49+00:00', 'viewport': 'width=device-width, initial-scale=1.0', 'og:title': 'Home - Artificial Intelligence Global Company', 'og:locale': 'en_US', 'language': 'English', 'og:url': 'https://www.aigcom.com/', 'og:description': "Artificial Intelligence Global Company are a leading technology and IT services player in the Middle East with top companies' client base across all sectors. – RPA – IIoT – Smart City – IR 4.0 Transformation – Robotic & Drones"}]}}, {'kind': 'customsearch#result', 'title': 'No Aigc in OnePlus 12 : r/oneplus', 'htmlTitle': 'No <b>Aigc</b> in OnePlus 12 : r/oneplus', 'link': 'https://www.reddit.com/r/oneplus/comments/1bw7i11/no_aigc_in_oneplus_12/', 'displayLink': 'www.reddit.com', 'snippet': "Apr 5, 2024 ... What's the use of sending an update which promises aigc support but when you try to edit from the photos app there is no option of an ai\xa0...", 'htmlSnippet': 'Apr 5, 2024 <b>...</b> What&#39;s the use of sending an update which promises <b>aigc</b> support but when you try to edit from the photos app there is no option of an ai&nbsp;...', 'formattedUrl': 'https://www.reddit.com/r/oneplus/comments/.../no_aigc_in_oneplus_12/', 'htmlFormattedUrl': 'https://www.reddit.com/r/oneplus/comments/.../no_<b>aigc</b>_in_oneplus_12/', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQqdgCGt6aySYk9_EkL_T7QkmAIKpWNgJeMVNvyzU_wIy_oc-ZqMETx1hQ&s', 'width': '151', 'height': '333'}], 'metatags': [{'og:image': 'https://external-preview.redd.it/no-aigc-in-oneplus-12-v0-a2lqb2l2Zm11a3NjMeq_1n68FyEnpe2vffHKEchxUlQ-J8tEwI6VQBgGlUg6.png?format=pjpg&auto=webp&s=b098f4fa430584fe2a75ec96d2cf1ccf04afa3d3', 'theme-color': '#000000', 'og:image:width': '1003', 'og:type': 'website', 'twitter:card': 'summary_large_image', 'twitter:title': 'r/oneplus on Reddit: No Aigc in OnePlus 12', 'og:site_name': 'Reddit', 'og:title': 'r/oneplus on Reddit: No Aigc in OnePlus 12', 'og:image:height': '2208', 'msapplication-navbutton-color': '#000000', 'og:description': 'Posted by u/Ares_osiris - 3 votes and 25 comments', 'twitter:image': 'https://external-preview.redd.it/no-aigc-in-oneplus-12-v0-a2lqb2l2Zm11a3NjMeq_1n68FyEnpe2vffHKEchxUlQ-J8tEwI6VQBgGlUg6.png?format=pjpg&auto=webp&s=b098f4fa430584fe2a75ec96d2cf1ccf04afa3d3', 'apple-mobile-web-app-status-bar-style': 'black', 'twitter:site': '@reddit', 'viewport': 'width=device-width, initial-scale=1, viewport-fit=cover', 'apple-mobile-web-app-capable': 'yes', 'og:ttl': '600', 'og:url': 'https://www.reddit.com/r/oneplus/comments/1bw7i11/no_aigc_in_oneplus_12/'}], 'cse_image': [{'src': 'https://external-preview.redd.it/no-aigc-in-oneplus-12-v0-a2lqb2l2Zm11a3NjMeq_1n68FyEnpe2vffHKEchxUlQ-J8tEwI6VQBgGlUg6.png?format=pjpg&auto=webp&s=b098f4fa430584fe2a75ec96d2cf1ccf04afa3d3'}]}}, {'kind': 'customsearch#result', 'title': 'AIGC 2024', 'htmlTitle': '<b>AIGC</b> 2024', 'link': 'https://icaigc.org/', 'displayLink': 'icaigc.org', 'snippet': 'AIGC 2024 will be a focal point for the latest advancements in AI-generated content. We believe this conference will provide a platform for participants to\xa0...', 'htmlSnippet': '<b>AIGC</b> 2024 will be a focal point for the latest advancements in AI-generated content. We believe this conference will provide a platform for participants to&nbsp;...', 'formattedUrl': 'https://icaigc.org/', 'htmlFormattedUrl': 'https://ic<b>aigc</b>.org/', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQfvIyB1V1UQQJkxtZp71Jmzrs7mV8MaSrts3fjc7tlZm7qEZlUA4bGTn8&s', 'width': '358', 'height': '141'}], 'metatags': [{'viewport': 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no', 'apple-mobile-web-app-capable': 'yes', 'mobile-web-app-capable': 'yes'}], 'cse_image': [{'src': 'https://icaigc.org/images/slider/slider-img1.png'}]}}, {'kind': 'customsearch#result', 'title': 'A Comprehensive Survey of AI-Generated Content (AIGC): A History ...', 'htmlTitle': 'A Comprehensive Survey of AI-Generated Content (<b>AIGC</b>): A History ...', 'link': 'https://newsletter.x-mol.com/paperRedirect/1633924246862884864', 'displayLink': 'newsletter.x-mol.com', 'snippet': 'Mar 7, 2023 ... This survey provides a comprehensive review on the history of generative models, and basic components, recent advances in AIGC from unimodal\xa0...', 'htmlSnippet': 'Mar 7, 2023 <b>...</b> This survey provides a comprehensive review on the history of generative models, and basic components, recent advances in <b>AIGC</b> from unimodal&nbsp;...', 'formattedUrl': 'https://newsletter.x-mol.com/paperRedirect/1633924246862884864', 'htmlFormattedUrl': 'https://newsletter.x-mol.com/paperRedirect/1633924246862884864', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTWQt3zdpQl0XLaCOdLPk9609PhbmMEOiFcusRmJjB6Zc9iAR2WjAmrWU0&s', 'width': '294', 'height': '171'}], 'metatags': [{'og:image': 'https://static.arxiv.org/static/browse/0.3.4/images/arxiv-logo-fb.png', 'theme-color': '#ffffff', 'og:image:width': '1200', 'twitter:card': 'summary', 'citation_title': 'A Comprehensive Survey of AI-Generated Content (AIGC): A History of Generative AI from GAN to ChatGPT', 'og:site_name': 'arXiv.org', 'citation_date': '2023/03/07', 'og:description': 'Recently, ChatGPT, along with DALL-E-2 and Codex,has been gaining significant\nattention from society. As a result, many individuals have become interested in\nrelated resources and are seeking to uncover the background and secrets behind\nits impressive performance. In fact, ChatGPT and other Generative AI (GAI)\ntechniques belong to the category of Artificial Intelligence Generated Content\n(AIGC), which involves the creation of digital content, such as images, music,\nand natural language, through AI models. The goal of AIGC is to make the\ncontent creation process more efficient and accessible, allowing for the\nproduction of high-quality content at a faster pace. AIGC is achieved by\nextracting and understanding intent information from instructions provided by\nhuman, and generating the content according to its knowledge and the intent\ninformation. In recent years, large-scale models have become increasingly\nimportant in AIGC as they provide better intent extraction and thus, improved\ngeneration results. With the ', 'og:image:secure_url': 'https://static.arxiv.org/static/browse/0.3.4/images/arxiv-logo-fb.png', 'twitter:image': 'https://static.arxiv.org/icons/twitter/arxiv-logo-twitter-square.png', 'citation_arxiv_id': '2303.04226', 'citation_online_date': '2023/03/07', 'twitter:image:alt': 'arXiv logo', 'twitter:site': '@arxiv', 'citation_pdf_url': 'https://arxiv.org/pdf/2303.04226', 'msapplication-tilecolor': '#da532c', 'og:type': 'website', 'og:image:alt': 'arXiv logo', 'twitter:title': 'A Comprehensive Survey of AI-Generated Content (AIGC): A History...', 'og:title': 'A Comprehensive Survey of AI-Generated Content (AIGC): A History of Generative AI from GAN to ChatGPT', 'citation_abstract': 'Recently, ChatGPT, along with DALL-E-2 and Codex,has been gaining significant\nattention from society. As a result, many individuals have become interested in\nrelated resources and are seeking to uncover the background and secrets behind\nits impressive performance. In fact, ChatGPT and other Generative AI (GAI)\ntechniques belong to the category of Artificial Intelligence Generated Content\n(AIGC), which involves the creation of digital content, such as images, music,\nand natural language, through AI models. The goal of AIGC is to make the\ncontent creation process more efficient and accessible, allowing for the\nproduction of high-quality content at a faster pace. AIGC is achieved by\nextracting and understanding intent information from instructions provided by\nhuman, and generating the content according to its knowledge and the intent\ninformation. In recent years, large-scale models have become increasingly\nimportant in AIGC as they provide better intent extraction and thus, improved\ngeneration results. With the ', 'og:image:height': '700', 'citation_author': 'Cao, Yihan', 'viewport': 'width=device-width, initial-scale=1', 'twitter:description': 'Recently, ChatGPT, along with DALL-E-2 and Codex,has been gaining significant\nattention from society. As a result, many individuals have become interested in\nrelated resources and are seeking to...', 'og:url': 'https://arxiv.org/abs/2303.04226v1'}], 'cse_image': [{'src': 'https://static.arxiv.org/static/browse/0.3.4/images/arxiv-logo-fb.png'}]}}, {'kind': 'customsearch#result', 'title': 'Robin Guo on X: "The AIGC market map \u200d♂️ Imagine you were ...', 'htmlTitle': 'Robin Guo on X: &quot;The <b>AIGC</b> market map \u200d♂️ Imagine you were ...', 'link': 'https://twitter.com/zebird0/status/1636747294979813379', 'displayLink': 'twitter.com', 'snippet': 'Mar 17, 2023 ... The AIGC market map \u200d♂️ Imagine you were playing DnD. You speak. And the world, monsters, and adventure all get generated in front of you,\xa0...', 'htmlSnippet': 'Mar 17, 2023 <b>...</b> The <b>AIGC</b> market map \u200d♂️ Imagine you were playing DnD. You speak. And the world, monsters, and adventure all get generated in front of you,&nbsp;...', 'formattedUrl': 'https://twitter.com/zebird0/status/1636747294979813379', 'htmlFormattedUrl': 'https://twitter.com/zebird0/status/1636747294979813379', 'pagemap': {'cse_thumbnail': [{'src': 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgh_U_PrxwNHX17QFklrlYvJjWAE8nzedDd3TCW4W-CtPC-FALICRS5LTE&s', 'width': '225', 'height': '225'}], 'imageobject': [{'contenturl': 'https://pbs.twimg.com/media/FrbirhbaQAcWcnt.jpg', 'width': '1024', 'caption': 'Image', 'thumbnailurl': 'https://pbs.twimg.com/media/FrbirhbaQAcWcnt?format=jpg&name=thumb'}], 'person': [{'identifier': '1205328920670855169', 'givenname': 'Robin Guo', 'disambiguatingdescription': 'A16Z GAMES', 'additionalname': 'zebird0'}], 'interactioncounter': [{'userinteractioncount': '8736', 'interactiontype': 'https://schema.org/FollowAction', 'name': 'Likes'}, {'userinteractioncount': '1318', 'interactiontype': 'https://schema.org/SubscribeAction', 'name': 'Retweets'}, {'userinteractioncount': '2018', 'interactiontype': 'https://schema.org/LikeAction', 'name': 'Quotes'}, {'userinteractioncount': '124', 'interactiontype': 'https://schema.org/LikeAction', 'name': 'Likes', 'url': 'https://twitter.com/zebird0/status/1636747294979813379/likes'}, {'userinteractioncount': '21', 'interactiontype': 'https://schema.org/InteractAction', 'name': 'Retweets', 'url': 'https://twitter.com/zebird0/status/1636747294979813379/retweets'}, {'userinteractioncount': '8', 'interactiontype': 'https://schema.org/InteractAction', 'name': 'Quotes', 'url': 'https://twitter.com/zebird0/status/1636747294979813379/retweets/with_comments'}, {'userinteractioncount': '6', 'interactiontype': 'https://schema.org/InteractAction', 'name': 'Replies', 'url': 'https://twitter.com/zebird0/status/1636747294979813379'}], 'metatags': [{'og:image': 'https://pbs.twimg.com/media/FrbirhbaQAcWcnt.jpg:large', 'theme-color': '#FFFFFF', 'og:type': 'article', 'og:site_name': 'X (formerly Twitter)', 'al:ios:app_name': 'X', 'apple-mobile-web-app-title': 'Twitter', 'og:title': 'Robin Guo (@zebird0) on X', 'al:android:package': 'com.twitter.android', 'al:ios:url': 'twitter://status?id=1636747294979813379', 'title': 'Robin Guo (@zebird0) on X', 'og:description': 'The AIGC market map 🧙\u200d♂️\n\nImagine you were playing DnD. You speak. And the world, monsters, and adventure all get generated in front of you, fully rendered, at real time.\n\nAI-powered UGC (AIGC) might make this a reality sooner than we think. @joshlu and I ponder this future below🧵', 'al:ios:app_store_id': '333903271', 'facebook-domain-verification': 'x6sdcc8b5ju3bh8nbm59eswogvg6t1', 'al:android:url': 'twitter://status?id=1636747294979813379', 'fb:app_id': '2231777543', 'apple-mobile-web-app-status-bar-style': 'white', 'viewport': 'width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover', 'mobile-web-app-capable': 'yes', 'og:url': 'https://twitter.com/zebird0/status/1636747294979813379', 'al:android:app_name': 'X'}], 'collection': [{'name': 'Post with replies'}], 'creativework': [{'name': 'Expanded Tweet URLs', 'url': 'https://t.co/jCtnYMA5CD'}], 'cse_image': [{'src': 'https://pbs.twimg.com/media/FrbirhbaQAcWcnt.jpg:large'}], 'socialmediaposting': [{'identifier': '1636747294979813379', 'commentcount': '6', 'articlebody': 'The AIGC market map 🧙\u200d♂️ Imagine you were playing DnD. You speak. And the world, monsters, and adventure all get generated in front of you, fully rendered, at real time. AI-powered...', 'position': '1', 'datecreated': '2023-03-17T15:12:19.000Z', 'datepublished': '2023-03-17T15:12:19.000Z', 'url': 'https://twitter.com/zebird0/status/1636747294979813379', 'mainentityofpage': 'https://twitter.com/zebird0/status/1636747294979813379'}]}}]}

结语

通过上述步骤,我们完成了Google自定义搜索引擎相关准备工作;同时成功自定义了一个专属自己的搜索引擎,并实践体验了网页搜索和代码API搜索的两种方式。

在这里插入图片描述

🎯🔖更多专栏系列文章:AIGC-AI大模型探索之路

😎 作者介绍:我是寻道AI小兵,资深程序老猿,从业10年+、互联网系统架构师,目前专注于AIGC的探索。
📖 技术交流:建立有技术交流群,可以扫码👇 加入社群,500本各类编程书籍、AI教程、AI工具等你领取!
如果文章内容对您有所触动,别忘了点赞、⭐关注,收藏!加入我,让我们携手同行AI的探索之旅,一起开启智能时代的大门!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/701203.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

基本元器件 - 晶体三级管

目录 区分极性 不同封装引脚辨认 基本电流关系 输出伏安特性 阻容耦合放大电路 晶体管的工作状态 三极管的主要参数 判断三极管的工作状态 估算法 图解法 基本放大电路 晶体三极管是一种 电流控电流 的元器件。 区分极性 除基极外&#xff0c;带箭头是发射极&…

优化LLM Prompt:降低使用成本和响应延迟的实用技巧

编者按&#xff1a; LLMs 被视为 AI 领域的一个里程碑式的突破&#xff0c;但要将其应用于实际生产环境&#xff0c;并且还能用对、用好并非易事。模型的使用成本和响应延迟是目前将大语言模型&#xff08;LLMs&#xff09;应用于生产环境中的核心难题之一。 在本期刊载的这篇文…

如何使用C++ STL标准模板库中的算法函数(附源码)

目录 1、概述 2、调用sort函数对列表元素进行排序 3、调用count_if查找满足条件的元素个数 4、调用find_if函数找到目标元素的信息 5、调用remove_copy_if函数搜索满足条件的多个元素 6、总结 VC++常用功能开发汇总(专栏文章列表,欢迎订阅,持续更新...)https://blog.…

香港服务器的正确维护指南:确保稳定运行的实用策略

很多人使用香港服务器&#xff0c;很清楚即使它们可以全天候运行而不会出现问题&#xff0c;您仍然需要进行适当的维护以确保效率。原因很简单&#xff0c;香港服务器的正确维护对于保证网站或应用的正常运行时间、数据安全以及系统性能至关重要。以下本文将讨论一些有关如何维…

【开源】医院电子病历管理系统 SSM+JSP+MySQL

目录 一、项目介绍 科室模块 医生模块 预约挂号模块 就诊记录模块 就诊评价模块 二、项目界面 三、核心代码 一、项目介绍 经典老框架SSM打造入门项目《医院电子病历管理系统》&#xff0c;分为用户网页和管理后台&#xff0c;包括科室模块、医生模块、预约挂号模块、…

AI网络爬虫:批量获取post请求动态加载的json数据

网站https://www.futurepedia.io/ai-innovations的数据是通过post请求动态加载的&#xff1a; 查看几页的请求载荷&#xff1a; {"companies":[],"startDate":"2023-12-01T00:00:00.000Z","endDate":"2024-06-09T12:25:08.525Z&…

wireshark 标记自己想要的数据包

1:点击视图 2:点击视图-着色规则 点击新增一行,双击名称-进行编辑 过滤器规则-编辑自己想要看到的 点击前景-选择凸出显示颜色 点击背景--选择凸出显示颜色 点击确定按钮

提升易用性,OceanBase生态管控产品的“从小到大”

2022年&#xff0c;OceanBase发布4.0版本“小鱼”&#xff0c;并首次公开提出了单机分布式一体化这一理念&#xff0c;旨在适应大小不同规模的工作负载&#xff0c;全面满足用户数据库“从小到大”全生命周期的需求。当时&#xff0c;我们所说的“从小到大”主要聚焦于数据库的…

Linux系统之smem命令的基本使用

Linux系统之smem命令的基本使用 一、smem命令介绍二、smem命令的使用帮助2.1 smem命令的help帮助信息2.2 smem命令的语法解释 三、smem工具安装3.1 安装epel3.2 搜索smem包3.3 安装smem 四、smem命令的基本使用4.1 查看内存概览4.2 查看内存占用百分比4.3 查看系统内存使用情况…

JDKCGLIB实现动态代理

1.代理模式 代理模式是23中设计模式中的一种。简单来说就是我们使用代理对象来替代真实对象,这样就可以实现在不修改原目标对象的前提下&#xff0c;提供额外的功能操作&#xff0c;以达到扩展目标对象的功能。 代理模式的功能主要是扩展目标对象的功能&#xff0c;比如说在目…

35、matlab设置字体、查看工具包版本、窗口默认布局和程序发布

1、matlab设置字体 1&#xff09;找到预设并点击预设 2&#xff09;设置流程&#xff1a;字体——>自定义——>编辑器——>选择字体及格式——>确定 如图序号所示 2、matlab查看工具包版本&#xff1a;ver命令 1&#xff09;命令行窗口输入命令 即可查看工具包…

Halcon 多相机统一坐标系

小杨说事-基于Halcon的多相机坐标系统一原理个人理解_多相机标定统一坐标系-CSDN博客 一、概述 最近在搞多相机标定等的相关问题&#xff0c;对于很大的场景&#xff0c;单个相机的视野是不够的&#xff0c;就必须要统一到一个坐标系下&#xff0c;因此我也用了4个相机&#…

指挥中心操作台在轨道交通中的作用

随着城市化进程的加速和交通需求的日益增长&#xff0c;轨道交通作为高效、便捷、环保的出行方式&#xff0c;在城市交通体系中扮演着越来越重要的角色。而在轨道交通系统的运行中&#xff0c;指挥中心操作台则发挥着至关重要的作用。本文将详细探讨指挥中心操作台在轨道交通中…

龙气万象-大麗和和「腾龙图」翡翠高级珠宝系列

泠泠龙吟,气象万千。大麗和和诚献「腾龙图」翡翠高级珠宝系列,以贯穿上下五千年的龙图腾纹样为主轴,融入现代高级珠宝设计,集雅列珍,见证龙纹嬗变,探讨美学的传承与创新。 这一系列从探讨构思到惊艳呈现历时20个月,龙纹原型跨越从战国早期至明清两代的漫长岁月,设计团队自青铜…

ttkbootstrap的icon图标自定义

前言 在使用ttkbootstrap库时&#xff0c;发现icon参数使用报错&#xff0c;错误代码 root ttk.Window(themename"superhero",size(1400, 700),resizable(True, True),iconphoto"1.png" )结果报错&#xff1a;iconphoto path is bad; using default ima…

STM32存储左右互搏 模拟U盘桥接SPI总线FATS读写FLASH W25QXX

STM32存储左右互搏 模拟U盘桥接SPI总线FATS读写FLASH W25QXX STM32的USB接口可以模拟成为U盘&#xff0c;通过FATS文件系统对连接的存储单元进行U盘方式的读写。 这里介绍STM32CUBEIDE开发平台HAL库模拟U盘桥接SPI总线FATS读写W25Q各型号FLASH的例程。 FLASH是常用的一种非易失…

【八股系列】react里组件通信有几种方式,分别怎样进行通信?

文章目录 1. props传递&#xff08;父向子通信&#xff09;:2. 回调函数作为props&#xff08;子向父通信&#xff09;:3. Context API&#xff1a;4. Redux或MobX等状态管理库&#xff1a;4.1 Redux使用示例 5. refs&#xff1a; 1. props传递&#xff08;父向子通信&#xff…

netty内存马探究

0x01 前言 基于netty动态创建pipeline的特性&#xff0c;其内存马的构造思路与tomcat有一定的区别&#xff0c;目前网上有关netty内存马的文章都围绕CVE-2022-22947和XXL-JOB两种场景展开&#xff0c;并未对其做更为详细的分析。本文就以上述两种场景为始&#xff0c;尝试从源码…

打造智能饲料工厂:全自动生产线设备

全自动饲料生产线设备实现了从原料投放到成品包装的全程自动化操作。通过传感器和控制系统&#xff0c;设备能够精确控制原料的配比和混合均匀度&#xff0c;确保饲料的质量稳定可靠。同时&#xff0c;自动化生产线还具备智能调节功能&#xff0c;能够根据生产需求自动调节生产…

四季变换,制氮机使用注意事项

随着四季的轮回变换&#xff0c;大自然展现着不同的风貌。对于制氮机而言&#xff0c;季节的变换同样会带来不同的使用挑战和注意事项。本文将为您揭示四季变换对制氮机使用的影响&#xff0c;帮助您更好地掌握制氮机的季节使用须知。 春季 温湿度变化&#xff1a;春季温湿度逐…