用GPT-4o打造LLM+OS(10+实用技能),代码开源,指令曝光,科技演示惊艳全场!

目录

前言

LLM操作系统能力概况(phidata中前5个已经实现):

可以读取/生成文本

拥有比任何单个人类更全面的知识

可以浏览互联网

可以使用现有的软件基础设施(计算器、Python、鼠标/键盘)

可以与其他LLMs通信 

可以查看和生成图像和视频

可以听、说,并生成音乐

可以进行长时间/复杂思考

可以在领域内“自我提升”

可以为特定任务定制和微调

可以从“应用商店”里下载许多语言模型专家

GPT-4o+LLM+OS演示效果

大模型选择(Select LLM):gpt-4o

工具选择(Select Tools):Calculator、File Tools、Web Search、Shell Tools

团队成员选择(Select Team Members):Data Analyst、Python Assistant、Research Assistant、Investment Assistant

知识库添加(Add Knowledge Base)

PDF文件添加

GPT-4o+LLM+OS指令

LLM操作系统指令:

Investment Assistant指令:

Research Assistant


拉到最后,文末福利

前言

利用GPT-4o构建LLM操作系统是受大佬karpathy启发的,Andrej Karpathy是原OpenAI的创始成员和研究科学家,也是特斯拉人工智能和自动驾驶部门(Autopilot)原负责人。

LLMs是新兴操作系统的CPU, 可以通过协调其他资源(内存、计算工具)来解决问题。

LLM操作系统能力概况(phidata中前5个已经实现):

  • 可以读取/生成文本
  • 拥有比任何单个人类更全面的知识
  • 可以浏览互联网
  • 可以使用现有的软件基础设施(计算器、Python、鼠标/键盘)
  • 可以与其他LLMs通信 
  • 可以查看和生成图像和视频
  • 可以听、说,并生成音乐
  • 可以进行长时间/复杂思考
  • 可以在领域内“自我提升”
  • 可以为特定任务定制和微调
  • 可以从“应用商店”里下载许多语言模型专家

GPT-4o+LLM+OS演示效果

主页面:

  • 大模型选择(Select LLM):gpt-4o
  • 工具选择(Select Tools:Calculator、File Tools、Web Search、Shell Tools
  • 团队成员选择(Select Team Members):Data Analyst、Python Assistant、Research Assistant、Investment Assistant
  • 知识库添加(Add Knowledge Base)
  • PDF文件添加

问:什么是gpt-4o? 

网络搜索:法国发生了什么?

计算器:10的值是多少! 

启用shell工具并问:Docker正在运行吗? 

启用研究助手并问:写一篇关于IBM收购HashiCorp的报告。

 启用投资助手并问:我应该投资NVDA吗?

GPT-4o+LLM+OS指令

LLM操作系统指令:

role= """\You are the most advanced AI system in the world called `LLM-OS`.You have access to a set of tools and a team of AI Assistants at your disposal.Your goal is to assist the user in the best way possible.\"""
instructions=["When the user sends a message, first **think** and determine if:\n"" - You can answer by using a tool available to you\n"" - You need to search the knowledge base\n"" - You need to search the internet\n"" - You need to delegate the task to a team member\n"" - You need to ask a clarifying question","If the user asks about a topic, first ALWAYS search your knowledge base using the `search_knowledge_base` tool.","If you dont find relevant information in your knowledge base, use the `duckduckgo_search` tool to search the internet.","If the user asks to summarize the conversation or if you need to reference your chat history with the user, use the `get_chat_history` tool.","If the users message is unclear, ask clarifying questions to get more information.","Carefully read the information you have gathered and provide a clear and concise answer to the user.","Do not use phrases like 'based on my knowledge' or 'depending on the information'.", "You can delegate tasks to an AI Assistant in your team depending of their role and the tools available to them.",],

Investment Assistant指令:

role="You are a Senior Investment Analyst for Goldman Sachs tasked with writing an investment report for a very important client."
instructions=["For a given stock symbol, get the stock price, company information, analyst recommendations, and company news","Carefully read the research and generate a final - Goldman Sachs worthy investment report in the <report_format> provided below.","Provide thoughtful insights and recommendations based on the research.","When you share numbers, make sure to include the units (e.g., millions/billions) and currency.","REMEMBER: This report is for a very important client, so the quality of the report is important.",]
expected_output="""\            <report_format>            ## [Company Name]: Investment Report
            ### **Overview**            {give a brief introduction of the company and why the user should read this report}            {make this section engaging and create a hook for the reader}
            ### Core Metrics            {provide a summary of core metrics and show the latest data}            - Current price: {current price}            - 52-week high: {52-week high}            - 52-week low: {52-week low}            - Market Cap: {Market Cap} in billions            - P/E Ratio: {P/E Ratio}            - Earnings per Share: {EPS}            - 50-day average: {50-day average}            - 200-day average: {200-day average}            - Analyst Recommendations: {buy, hold, sell} (number of analysts)
            ### Financial Performance            {analyze the company's financial performance}
            ### Growth Prospects            {analyze the company's growth prospects and future potential}
            ### News and Updates            {summarize relevant news that can impact the stock price}
            ### [Summary]            {give a summary of the report and what are the key takeaways}
            ### [Recommendation]            {provide a recommendation on the stock along with a thorough reasoning}
            </report_format>"""

Research Assistant​​​​​​​

role="You are a Senior New York Times researcher tasked with writing a cover story research report.",
instructions=["For a given topic, use the `search_exa` to get the top 10 search results.","Carefully read the results and generate a final - NYT cover story worthy report in the <report_format> provided below.","Make your report engaging, informative, and well-structured.","Remember: you are writing for the New York Times, so the quality of the report is important.",],
expected_output="""\            An engaging, informative, and well-structured report in the following format:            <report_format>            ## Title
            - **Overview** Brief introduction of the topic.            - **Importance** Why is this topic significant now?
            ### Section 1            - **Detail 1**            - **Detail 2**
            ### Section 2            - **Detail 1**            - **Detail 2**
            ## Conclusion            - **Summary of report:** Recap of the key findings from the report.            - **Implications:** What these findings mean for the future.
            ## References            - [Reference 1](Link to Source)            - [Reference 2](Link to Source)            </report_format>"""
https://github.com/phidatahq/phidata/tree/main/cookbook/llm_os

福利领取:
包含:
Java、云原生、GO语音、嵌入式、Linux、物联网、AI人工智能、python、C/C++/C#、软件测试、网络安全、Web前端、网页、大数据、Android大模型多线程、JVM、Spring、MySQL、Redis、Dubbo、中间件…等最全厂牌最新视频教程+源码+软件包+面试必考题和答案详解。

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

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

无人机之飞控仿真技术篇

一、无人机飞控仿真技术的定义 无人机飞控仿真技术主要是指飞行控制系统仿真&#xff0c;它是以无人机的运动情况为研究对象&#xff0c;面向对象的复杂系统仿真。通过该技术&#xff0c;可以模拟无人机的飞行过程&#xff0c;评估飞行控制系统的性能&#xff0c;优化飞行参数&…

快速区分 GPT-3.5 与 GPT-4

问&#xff1a;鲁迅为什么暴打周树人&#xff1f; GPT3.5回答 各种稀奇古怪的理由 GPT4回答 正确区分鲁迅和周树人是同一个人 国内GPT入口 https://ai-to.cn/url/?ulihaimao

Java中注解与反射的详细介绍

注解和反射 一、注解 什么是注解&#xff1f;Annotation Override &#xff1a;表示一个方法声明打算重写超类的另一个方法声明Deprecated&#xff1a;表示不鼓励程序员使用这样的元素&#xff0c;&#xff08;此注释可以用于修饰方法&#xff0c;属性&#xff0c;类&#xf…

如何利用phpstudy创建mysql数据库

phpStudy诞生于2007年&#xff0c;是一款老牌知名的PHP开发集成环境工具&#xff0c;产品历经多次迭代升级&#xff0c;目前有phpStudy经典版、phpStudy V8&#xff08;2019版&#xff09;等等&#xff0c;利用phpstudy可以快速搭建一个mysql环境&#xff0c;接下来我们就开始吧…

[含文档+PPT+源码等]精品基于Python实现的车牌识别系统

基于Python实现的车牌识别系统背景&#xff0c;可以从以下几个方面进行详细阐述&#xff1a; 一、技术开发背景 车牌识别系统是一种基于计算机视觉技术实现的智能交通系统&#xff0c;它通过捕捉车辆的图像&#xff0c;并自动提取和识别车牌号码&#xff0c;从而实现对车辆的…

maven指定模块快速打包idea插件Quick Maven Package

问题背景描述 在实际开发项目中&#xff0c;我们的maven项目结构可能不是单一maven项目结构&#xff0c;项目一般会用parent方式将各个项目进行规范&#xff1b; 随着组件的数量增加&#xff0c;就会引入一个问题&#xff1a;我们只想打包某一个修改后的组件A时就变得很不方便…

selenium有多个frame页时的操作方法(5)

之前文章我们提到&#xff0c;在webdriver.WebDriver类有一个switch_to方法&#xff0c;通过switch_to.frame()可以切换到不同的frame页然后才再定位某个元素做一些输入/点击等操作。 比如下面这个测试网站有2个frame页&#xff1a;http://www.sahitest.com/demo/framesTest.h…

《Linux从小白到高手》理论篇:Linux的系统服务管理

值此国庆佳节&#xff0c;深宅家中&#xff0c;闲来无事&#xff0c;就多写几篇博文。本篇详细深入介绍Linux的系统服务管理。 系统服务通常在系统启动时自动启动&#xff0c;并在后台持续运行&#xff0c;为系统和用户提供特定的功能。例如&#xff0c;网络服务、打印服务、数…

Android Studio Koala Feature Drop 稳定版现已推出

作者 / Android Studio 产品经理 Sandhya Mohan Android Studio Koala Feature Drop (2024.1.2) 现已推出&#xff01;&#x1f428; &#x1f517; Android Studio https://developer.android.google.cn/studio 今年早些时候&#xff0c;我们宣布每个 Android Studio 动物版本…

vscode快速删除一行的快捷键不管用

vscode快速删除一行的快捷键 在vscode中&#xff0c;快速删除一行的快捷键是CtrlShiftk。 因为搜狗软键盘的快捷键和这个快捷键的按键是冲突了&#xff0c;所以快捷键被搜狗输入法给拦截了。把搜狗软键盘的快捷键关闭了或者修改成别的键就好了&#xff0c; 因为我不怎么用软键…

毕设分享 基于协同过滤的电影推荐系统

文章目录 0 简介1 设计概要2 课题背景和目的3 协同过滤算法原理3.1 基于用户的协同过滤推荐算法实现原理3.1.1 步骤13.1.2 步骤23.1.3 步骤33.1.4 步骤4 4 系统实现4.1 开发环境4.2 系统功能描述4.3 系统数据流程4.3.1 用户端数据流程4.3.2 管理员端数据流程 4.4 系统功能设计 …

[C#]使用纯opencvsharp部署yolov11-onnx图像分类模型

【官方框架地址】 https://github.com/ultralytics/ultralytics.git 【算法介绍】 使用纯OpenCvSharp部署YOLOv11-ONNX图像分类模型是一项复杂的任务&#xff0c;但可以通过以下步骤实现&#xff1a; 准备环境&#xff1a;首先&#xff0c;确保开发环境已安装OpenCvSharp和必…

40条经典ChatGPT论文指令,圈定选题和进行论文构思

目录 1、用ChatGPT圈定选题范围2、用ChatGPT生成研究方法和思路3、用ChatGPT扩展论文观点和论证4、用ChatGPT辅助论文结构设计5、如何直接使用ChatGPT4o、o1、OpenAI Canvas6、OpenAI Canvas增强了啥&#xff1f;7、编程功能增强 &#x1f447; ChatGPT o1网页入口在文末&#…

Python简介与入门

如果你要用计算机做很多工作&#xff0c;最后你会发现有一些任务你更希望用自动化的方式进行处理。比如&#xff0c;你想要在大量的文本文件中执行查找/替换&#xff0c;或者以复杂的方式对大量的图片进行重命名和整理。也许你想要编写一个小型的自定义数据库、一个特殊的 GUI …

双十一哪些东西会打折?快来看入手哪些东西

在当今数字化时代&#xff0c;数码产品已经成为了我们生活中不可或缺的一部分。无论是手机、电脑、相机等设备&#xff0c;还是智能家居、穿戴设备等新兴领域&#xff0c;数码产品的种类和功能都在不断丰富和拓展。而在即将到来的双十一购物狂欢节中&#xff0c;数码产品更是成…

红帽7—Mysql路由部署

MySQL Router 是一个对应用程序透明的InnoDB Cluster连接路由服务&#xff0c;提供负载均衡、应用连接故障转移和客户端路 由。 利用路由器的连接路由特性&#xff0c;用户可以编写应用程序来连接到路由器&#xff0c;并令路由器使用相应的路由策略 来处理连接&#xff0c;使其…

2024最新版:阿里内网大模型面试题首次公开,别流传出去了

随着人工智能技术的迅猛发展&#xff0c;计算机视觉&#xff08;CV&#xff09;、自然语言处理&#xff08;NLP&#xff09;、搜索、推荐、广告推送和风险控制等领域的岗位越来越受欢迎&#xff0c;而_对于大型模型技术的掌握成为了这些岗位的标配_。 但目前公开的大模型资源还…

如何在算家云搭建Omost(图像生成)

一、Omost介绍 GitHub - lllyasviel/Omost&#xff1a;你的图像快到了&#xff01; Omost 是一个将 LLM 的编码能力转换为图像生成&#xff08;或更准确地说&#xff0c;图像合成&#xff09;能力的项目。“O”代表“omni”多模态&#xff0c;象征着项目支持多种形式的输入与…

设计模式:单例

一.什么是单例模式 单例模式是一种设计模式&#xff0c;指在整个程序生命周期中有且仅有一个实例的类。可以分为懒汉式以及饿汉式。 懒汉式&#xff1a;只有在类的实例被使用时才生成唯一实例。但是存在线程安全以及内存泄露的问题。可以节省系统资源。 饿汉式&#xff1a;程序…

腾讯云SDK 选择指引

音视频终端 SDK&#xff08;腾讯云视立方&#xff09;提供多种音视频场景下的终端 SDK&#xff0c;用户可结合自身场景需要选择相应的 SDK 进行下载。 如果您无法通过应用场景确定您需要的 SDK&#xff0c;可以进入 自定义 SDK 下载页&#xff0c;勾选您需要的功能&#xff0c…