国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架

這篇具有很好參考價值的文章主要介紹了MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

一個多智能體元編程框架,給定一行需求,它可以返回產(chǎn)品文檔、架構(gòu)設(shè)計、任務(wù)列表和代碼。這個項目提供了一種創(chuàng)新的方式來管理和執(zhí)行項目,將需求轉(zhuǎn)化為具體的文檔和任務(wù)列表,使項目管理變得高效而智能。對于需要進(jìn)行規(guī)劃和協(xié)調(diào)的項目,這個框架提供了強(qiáng)大的支持.

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

MetaGPT’s 能力展示

https://github.com/geekan/MetaGPT/assets/34952977/34345016-5d13-489d-b9f9-b82ace413419

例如,如果你輸入’ python startup.py ’ ’ Design a RecSys like今日頭條’ ',你會得到很多輸出,其中之一是data & api Design

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

生成一個分析和設(shè)計示例的成本約為0.2美元(在GPT-4 API費(fèi)用中),而生成一個完整項目的成本約為2.0美元。

1.安裝

1.1 安裝視頻指南

  • Matthew Berman: How To Install MetaGPT - Build A Startup With One Prompt!!
  • 常規(guī)安裝
#Step 1: Ensure that NPM is installed on your system. Then install mermaid-js. (If you don't have npm in your computer, please go to the Node.js offical website to install Node.js https://nodejs.org/ and then you will have npm tool in your computer.)
npm --version
sudo npm install -g @mermaid-js/mermaid-cli

#Step 2: Ensure that Python 3.9+ is installed on your system. You can check this by using:
python --version

#Step 3: Clone the repository to your local machine, and install it.
git clone https://github.com/geekan/metagpt
cd metagpt
pip install -e.

Note:

  • If already have Chrome, Chromium, or MS Edge installed, you can skip downloading Chromium by setting the environment variable
    PUPPETEER_SKIP_CHROMIUM_DOWNLOAD to true.

  • Some people are having issues installing this tool globally. Installing it locally is an alternative solution,

    npm install @mermaid-js/mermaid-cli
    
  • don’t forget to the configuration for mmdc in config.yml

    PUPPETEER_CONFIG: "./config/puppeteer-config.json"
    MMDC: "./node_modules/.bin/mmdc"
    
  • if pip install -e. fails with error [Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test', try instead running pip install -e. --user

  • 將Mermaid圖表轉(zhuǎn)換為SVG、PNG和PDF格式。除了Node.js版本的mermaid - cli之外,你現(xiàn)在還可以選擇使用Python版本的劇作家、pyppeteer或mermaid。

    • Playwright

      • Install Playwright
      pip install playwright
      
      • Install the Required Browsers

      to support PDF conversion, please install Chrominum.

      playwright install --with-deps chromium
      
      • modify config.yaml

      uncomment MERMAID_ENGINE from config.yaml and change it to playwright

      MERMAID_ENGINE: playwright
      
    • pyppeteer

      • Install pyppeteer
      pip install pyppeteer
      
      • Use your own Browsers

      pyppeteer alow you use installed browsers, please set the following envirment

      export PUPPETEER_EXECUTABLE_PATH = /path/to/your/chromium or edge or chrome
      

      please do not use this command to install browser, it is too old

      pyppeteer-install
      
      • modify config.yaml

      uncomment MERMAID_ENGINE from config.yaml and change it to pyppeteer

      MERMAID_ENGINE: pyppeteer
      
    • mermaid.ink

      • modify config.yaml

      uncomment MERMAID_ENGINE from config.yaml and change it to ink

      MERMAID_ENGINE: ink
      

      Note: this method does not support pdf export.

1.2 Docker安裝指南

#Step 1: Download metagpt official image and prepare config.yaml
docker pull metagpt/metagpt:latest
mkdir -p /opt/metagpt/{config,workspace}
docker run --rm metagpt/metagpt:latest cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml
vim /opt/metagpt/config/key.yaml # Change the config

#Step 2: Run metagpt demo with container
docker run --rm \
    --privileged \
    -v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \
    -v /opt/metagpt/workspace:/app/metagpt/workspace \
    metagpt/metagpt:latest \
    python startup.py "Write a cli snake game"

#You can also start a container and execute commands in it
docker run --name metagpt -d \
    --privileged \
    -v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \
    -v /opt/metagpt/workspace:/app/metagpt/workspace \
    metagpt/metagpt:latest

docker exec -it metagpt /bin/bash
$ python startup.py "Write a cli snake game"

The command docker run ... do the following things:

  • Run in privileged mode to have permission to run the browser
  • Map host directory /opt/metagpt/config to container directory /app/metagpt/config
  • Map host directory /opt/metagpt/workspace to container directory /app/metagpt/workspace
  • Execute the demo command python startup.py "Write a cli snake game"

1.3 構(gòu)造自定義

#You can also build metagpt image by yourself.
git clone https://github.com/geekan/MetaGPT.git
cd MetaGPT && docker build -t metagpt:custom .

1.4 相關(guān)配置

  • Configure your OPENAI_API_KEY in any of config/key.yaml / config/config.yaml / env
  • Priority order: config/key.yaml > config/config.yaml > env
#Copy the configuration file and make the necessary modifications.
cp config/config.yaml config/key.yaml
Variable Name config/key.yaml env
OPENAI_API_KEY # Replace with your own key OPENAI_API_KEY: “sk-…” export OPENAI_API_KEY=“sk-…”
OPENAI_API_BASE # Optional OPENAI_API_BASE: “https://<YOUR_SITE>/v1” export OPENAI_API_BASE=“https://<YOUR_SITE>/v1”

2.相關(guān)教程

#Run the script
python startup.py "Write a cli snake game"
#Do not hire an engineer to implement the project
python startup.py "Write a cli snake game" --implement False
#Hire an engineer and perform code reviews
python startup.py "Write a cli snake game" --code_review True

After running the script, you can find your new project in the workspace/ directory.

  • Preference of Platform or Tool

You can tell which platform or tool you want to use when stating your requirements.

python startup.py "Write a cli snake game based on pygame"
  • 使用指南
NAME
    startup.py - We are a software startup comprised of AI. By investing in us, you are empowering a future filled with limitless possibilities.

SYNOPSIS
    startup.py IDEA <flags>

DESCRIPTION
    We are a software startup comprised of AI. By investing in us, you are empowering a future filled with limitless possibilities.

POSITIONAL ARGUMENTS
    IDEA
        Type: str
        Your innovative idea, such as "Creating a snake game."

FLAGS
    --investment=INVESTMENT
        Type: float
        Default: 3.0
        As an investor, you have the opportunity to contribute a certain dollar amount to this AI company.
    --n_round=N_ROUND
        Type: int
        Default: 5

NOTES
    You can also use flags syntax for POSITIONAL ARGUMENTS

2.1 快速開始

It is difficult to install and configure the local environment for some users. The following tutorials will allow you to quickly experience the charm of MetaGPT.

  • MetaGPT quickstart

Try it on Huggingface Space

  • https://huggingface.co/spaces/deepwisdom/MetaGPT
  • 相關(guān)鏈接

https://github.com/geekan/MetaGPT/assets/2707039/5e8c1062-8c35-440f-bb20-2b0320f8d27d

3.更多推薦:終端LLM AI模型:mlc-llm

大型語言模型的機(jī)器學(xué)習(xí)編譯(MLC LLM)是一種高性能的通用部署解決方案,允許使用帶有編譯器加速的本機(jī)api來本地部署任何大型語言模型。這個項目的使命是讓每個人都能使用ML編譯技術(shù)在每個人的設(shè)備上開發(fā)、優(yōu)化和部署人工智能模型。

項目鏈接:https://github.com/mlc-ai/mlc-llm

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

最后

為了幫助大家更好的學(xué)習(xí)人工智能,這里給大家準(zhǔn)備了一份人工智能入門/進(jìn)階學(xué)習(xí)資料,里面的內(nèi)容都是適合學(xué)習(xí)的筆記和資料,不懂編程也能聽懂、看懂,所有資料朋友們?nèi)绻行枰兹斯ぶ悄苋腴T+進(jìn)階學(xué)習(xí)資源包,可以在評論區(qū)或掃.碼領(lǐng)取哦)~

在線教程

  • 麻省理工學(xué)院人工智能視頻教程 – 麻省理工人工智能課程
  • 人工智能入門 – 人工智能基礎(chǔ)學(xué)習(xí)。Peter Norvig舉辦的課程
  • EdX 人工智能 – 此課程講授人工智能計算機(jī)系統(tǒng)設(shè)計的基本概念和技術(shù)。
  • 人工智能中的計劃 – 計劃是人工智能系統(tǒng)的基礎(chǔ)部分之一。在這個課程中,你將會學(xué)習(xí)到讓機(jī)器人執(zhí)行一系列動作所需要的基本算法。
  • 機(jī)器人人工智能 – 這個課程將會教授你實現(xiàn)人工智能的基本方法,包括:概率推算,計劃和搜索,本地化,跟蹤和控制,全部都是圍繞有關(guān)機(jī)器人設(shè)計。
  • 機(jī)器學(xué)習(xí) – 有指導(dǎo)和無指導(dǎo)情況下的基本機(jī)器學(xué)習(xí)算法
  • 機(jī)器學(xué)習(xí)中的神經(jīng)網(wǎng)絡(luò) – 智能神經(jīng)網(wǎng)絡(luò)上的算法和實踐經(jīng)驗
  • 斯坦福統(tǒng)計學(xué)習(xí)

??有需要的小伙伴,可以點擊下方鏈接免費(fèi)領(lǐng)取或者V掃描下方二維碼免費(fèi)領(lǐng)取??
?MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體
MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

人工智能書籍

  • OpenCV(中文版).(布拉德斯基等)
  • OpenCV+3計算機(jī)視覺++Python語言實現(xiàn)+第二版
  • OpenCV3編程入門 毛星云編著
  • 數(shù)字圖像處理_第三版
  • 人工智能:一種現(xiàn)代的方法
  • 深度學(xué)習(xí)面試寶典
  • 深度學(xué)習(xí)之PyTorch物體檢測實戰(zhàn)
  • 吳恩達(dá)DeepLearning.ai中文版筆記
  • 計算機(jī)視覺中的多視圖幾何
  • PyTorch-官方推薦教程-英文版
  • 《神經(jīng)網(wǎng)絡(luò)與深度學(xué)習(xí)》(邱錫鵬-20191121)

  • MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體
    ??有需要的小伙伴,可以點擊下方鏈接免費(fèi)領(lǐng)取或者V掃描下方二維碼免費(fèi)領(lǐng)取??
    ?MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

第一階段:零基礎(chǔ)入門(3-6個月)

新手應(yīng)首先通過少而精的學(xué)習(xí),看到全景圖,建立大局觀。 通過完成小實驗,建立信心,才能避免“從入門到放棄”的尷尬。因此,第一階段只推薦4本最必要的書(而且這些書到了第二、三階段也能繼續(xù)用),入門以后,在后續(xù)學(xué)習(xí)中再“哪里不會補(bǔ)哪里”即可。

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

第二階段:基礎(chǔ)進(jìn)階(3-6個月)

熟讀《機(jī)器學(xué)習(xí)算法的數(shù)學(xué)解析與Python實現(xiàn)》并動手實踐后,你已經(jīng)對機(jī)器學(xué)習(xí)有了基本的了解,不再是小白了。這時可以開始觸類旁通,學(xué)習(xí)熱門技術(shù),加強(qiáng)實踐水平。在深入學(xué)習(xí)的同時,也可以探索自己感興趣的方向,為求職面試打好基礎(chǔ)。

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

第三階段:工作應(yīng)用

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

這一階段你已經(jīng)不再需要引導(dǎo),只需要一些推薦書目。如果你從入門時就確認(rèn)了未來的工作方向,可以在第二階段就提前閱讀相關(guān)入門書籍(對應(yīng)“商業(yè)落地五大方向”中的前兩本),然后再“哪里不會補(bǔ)哪里”。

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體

MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體
??有需要的小伙伴,可以點擊下方鏈接免費(fèi)領(lǐng)取或者V掃描下方二維碼免費(fèi)領(lǐng)取??
?MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架,人工智能,計算機(jī)視覺,chatgpt,機(jī)器學(xué)習(xí),MetaGPT,AI,智能體文章來源地址http://www.zghlxwxcb.cn/news/detail-808800.html

到了這里,關(guān)于MetaGPT( The Multi-Agent Framework):顛覆AI開發(fā)的革命性多智能體元編程框架的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進(jìn)行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費(fèi)用

相關(guān)文章

  • 【AI的未來 - AI Agent系列】【MetaGPT】4. ActionNode從理論到實戰(zhàn)

    【AI的未來 - AI Agent系列】【MetaGPT】4. ActionNode從理論到實戰(zhàn)

    0.1 官方解釋 在MG框架0.5版本中,新增加了ActionNode類,為Agent的動作執(zhí)行提供更強(qiáng)的能力 ActionNode可以被視為一組動作樹,根據(jù)類內(nèi)定義,一個動作樹的父節(jié)點可以訪問所有的子動作節(jié)點;也就是說,定義了一個完整的動作樹之后,可以從父節(jié)點按樹的結(jié)構(gòu)順序執(zhí)行每一個子動

    2024年02月20日
    瀏覽(22)
  • 【AI的未來 - AI Agent系列】【MetaGPT】6. 用ActionNode重寫技術(shù)文檔助手

    【AI的未來 - AI Agent系列】【MetaGPT】6. 用ActionNode重寫技術(shù)文檔助手

    前文【【AI的未來 - AI Agent系列】【MetaGPT】5. 更復(fù)雜的Agent實戰(zhàn) - 實現(xiàn)技術(shù)文檔助手】我們用Action實現(xiàn)了一個技術(shù)文檔助手,在學(xué)習(xí)了ActionNode技術(shù)之后,我們用ActionNode來嘗試重寫一下這個技術(shù)文檔助手。 【AI的未來 - AI Agent系列】【MetaGPT】5. 更復(fù)雜的Agent實戰(zhàn) - 實現(xiàn)技術(shù)文檔

    2024年02月21日
    瀏覽(22)
  • 【AI的未來 - AI Agent系列】【MetaGPT】3. 實現(xiàn)一個訂閱智能體,訂閱消息并打通微信和郵件

    【AI的未來 - AI Agent系列】【MetaGPT】3. 實現(xiàn)一個訂閱智能體,訂閱消息并打通微信和郵件

    【AI的未來 - AI Agent系列】【MetaGPT】0. 你的第一個MetaGPT程序 【AI的未來 - AI Agent系列】【MetaGPT】1. AI Agent如何重構(gòu)世界 【AI的未來 - AI Agent系列】【MetaGPT】2. 實現(xiàn)自己的第一個Agent 以《MetaGPT智能體開發(fā)入門》課程的 Task4 為例,利用MetaGPT從0開始實現(xiàn)一個自己的訂閱智能體,定

    2024年01月19日
    瀏覽(25)
  • 【AI的未來 - AI Agent系列】【MetaGPT】4.1 細(xì)說我在ActionNode實戰(zhàn)中踩的那些坑

    【AI的未來 - AI Agent系列】【MetaGPT】4.1 細(xì)說我在ActionNode實戰(zhàn)中踩的那些坑

    上篇文章 【AI的未來 - AI Agent系列】【MetaGPT】4. ActionNode從理論到實戰(zhàn) 中我們學(xué)習(xí)了MetaGPT中ActionNode的理論和基本用法,跑通了一個簡單程序。 原理和代碼實現(xiàn)都很簡單,但是誰知道當(dāng)時我遇到了多少坑… 本文帶你看看我在上文中遇到的坑,希望能幫到你! 下面說下我遇到的

    2024年01月22日
    瀏覽(32)
  • 【AI Agent系列】【MetaGPT】9. 一句話訂閱專屬信息 - 訂閱智能體進(jìn)階,實現(xiàn)一個更通用的訂閱智能體(2)

    【AI Agent系列】【MetaGPT】9. 一句話訂閱專屬信息 - 訂閱智能體進(jìn)階,實現(xiàn)一個更通用的訂閱智能體(2)

    0.1 前置推薦閱讀 訂閱智能體實戰(zhàn) 【AI的未來 - AI Agent系列】【MetaGPT】3. 實現(xiàn)一個訂閱智能體,訂閱消息并打通微信和郵件 【AI Agent系列】【MetaGPT】8. 一句話訂閱專屬信息 - 訂閱智能體進(jìn)階,實現(xiàn)一個更通用的訂閱智能體 ActionNode基礎(chǔ)與實戰(zhàn) 【AI的未來 - AI Agent系列】【MetaG

    2024年02月22日
    瀏覽(23)
  • AGI之Agent:《Agent AI: Surveying the Horizons of Multimodal Interaction智能體AI:多模態(tài)交互視野的考察》翻譯與解讀

    AGI之Agent:《Agent AI: Surveying the Horizons of Multimodal Interaction智能體AI:多模態(tài)交互視野的考察》翻譯與解讀

    AGI之Agent:《Agent AI: Surveying the Horizons of Multimodal Interaction智能體AI:多模態(tài)交互視野的考察》翻譯與解讀 導(dǎo)讀 :這篇文章探討了一種新的 多模態(tài) 智能代理 體系結(jié)構(gòu),該體系結(jié)構(gòu)可 感知視覺 刺激、 語言 輸入和其他 環(huán)境相關(guān) 數(shù)據(jù),并產(chǎn)生 有意義的實體動作 。 文章提出,隨

    2024年01月22日
    瀏覽(15)
  • AI低代碼,或?qū)⒃俅晤嵏查_發(fā)行業(yè)

    AI低代碼,或?qū)⒃俅晤嵏查_發(fā)行業(yè)

    IT行業(yè)最不缺少概念,大多數(shù)人也都是一知半解。 AI的火爆,低代碼的盛行 ,如今 AIGC+低代碼、AI+低代碼、智能開發(fā)、AI生成式開發(fā)、AIGS(AI生成軟件) 等等呼之欲出,?AIGC(AI Generated Content,AI生成內(nèi)容)技術(shù)及應(yīng)用的爆發(fā),似乎正在給低/無代碼行業(yè)帶來一場顛覆性革命。 研

    2024年02月05日
    瀏覽(15)
  • 【DataWhale】靈境Agent開發(fā)——低代碼創(chuàng)建AI智能體

    【DataWhale】靈境Agent開發(fā)——低代碼創(chuàng)建AI智能體

    ? 低代碼模式支持開發(fā)者通過編排工作流的方式快速構(gòu)建智能體,您可以通過拖拽和組合模型、提示詞、代碼等模塊,實現(xiàn)準(zhǔn)確的、復(fù)雜的業(yè)務(wù)流程。 ? 個人體驗下來,目前這個低代碼開發(fā)功能還不是很完善,許多組件功能都十分有限,沒法增加更多自定義的功能??梢哉f

    2024年03月27日
    瀏覽(21)
  • 【大模型系列】AutoAgents: A Framework for Automatic Agent Generation論文閱讀

    AutoAgents: A Framework for Automatic Agent Generation 基本信息 作者單位:北京大學(xué) 香港科技大學(xué) 北京人工智能研究院 滑鐵盧大學(xué) 期刊:arXiv 一句話介紹:自適應(yīng)地生成和協(xié)調(diào)多個專業(yè)代理,根據(jù)不同的任務(wù)構(gòu)建 AI 團(tuán)隊 論文:https://arxiv.org/abs/2309.17288 代碼:https://github.com/Link-AGI/Aut

    2024年01月19日
    瀏覽(15)
  • PETRv2: A Unified Framework for 3D Perception from Multi-Camera Images

    PETRv2: A Unified Framework for 3D Perception from Multi-Camera Images

    PETRv2: A Unified Framework for 3D Perception from Multi-Camera Images 曠視 本文的目標(biāo)是 通過擴(kuò)展 PETR,使其有時序建模和多任務(wù)學(xué)習(xí)的能力 以此建立一個 強(qiáng)有力且統(tǒng)一的框架。 本文主要貢獻(xiàn): 將 位置 embedding 轉(zhuǎn)換到 時序表示學(xué)習(xí),時序的對齊 是在 3D PE 上做 姿態(tài)變換實現(xiàn)的。提出了

    2024年02月16日
    瀏覽(23)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包