[AI Fabric] 解锁AI的未来:深入探索Fabric开源框架

今天看到一个项目,Fabric,我们一起来看下

介绍

fabric 是一个使用人工智能增强人类能力的开源框架。

为什么需要Fabric

因为作者认为,人工智能很强大,不存在能力问题,存在的是集成问题。

Fabric 的创建就是为了解决这个问题,让每个人都能精细地应用人工智能来应对日常挑战。

哲学

技术的目的是帮助人类繁荣。

将问题分解为组件

将问题分解为组件,然后一次一个地应用人工智能。

有点类似 Unix 哲学

提示太多

现在提示太多,也不知道是否有用,选择困难症。

Fabric 的 prompt

  • 使用 Markdown 来帮助确保最大程度的可读性和可编辑性
  • 非常明确的指令
  • 倾向于几乎只使用提示的系统部分

快速开始

git clone https://github.com/danielmiessler/fabric.git
cd fabric
sudo apt install pipx
pipx install .
fabric --setupfabric --help# update
pipx install . --force
fabric --update

使用 fabric 客户端

# 设置环境变量
export OPENAI_BASE_URL=...
export DEFAULT_MODEL=...
export OPENAI_API_KEY=...pbpaste | fabric --pattern summarize
pbpaste | fabric --stream --pattern analyze_claims
yt --transcript https://youtube.com/watch?v=uXs-zPc63kM | fabric --stream --pattern extract_wisdom
pbpaste | analyze_claims --stream

分析

入口 fabric.py

看下 client 代码 fabric/installer/client/cli/fabric.py

argparse 解析命令行参数,然后执行相应的功能函数

from .utils import Standalone, Update, Setup, Alias, run_electron_app
import argparse
import sys
import osscript_directory = os.path.dirname(os.path.realpath(__file__))def main():parser = argparse.ArgumentParser(description="An open source framework for augmenting humans using AI.")parser.add_argument("--text", "-t", help="Text to extract summary from")parser.add_argument("--copy", "-C", help="Copy the response to the clipboard", action="store_true")parser.add_argument('--agents', '-a',help="Use praisonAI to create an AI agent and then use it. ex: 'write me a movie script'", action="store_true")parser.add_argument("--output","-o",help="Save the response to a file",nargs="?",const="analyzepaper.txt",default=None,)parser.add_argument('--session', '-S',help="Continue your previous conversation. Default is your previous conversation", nargs="?", const="default")parser.add_argument('--clearsession', help="deletes indicated session. Use 'all' to delete all sessions")parser.add_argument('--sessionlog', help="View the log of a session")parser.add_argument('--listsessions', help="List all sessions", action="store_true")parser.add_argument("--gui", help="Use the GUI (Node and npm need to be installed)", action="store_true")parser.add_argument("--stream","-s",help="Use this option if you want to see the results in realtime. NOTE: You will not be able to pipe the output into another command.",action="store_true",)parser.add_argument("--list", "-l", help="List available patterns", action="store_true")parser.add_argument('--temp', help="set the temperature for the model. Default is 0", default=0, type=float)parser.add_argument('--top_p', help="set the top_p for the model. Default is 1", default=1, type=float)parser.add_argument('--frequency_penalty', help="set the frequency penalty for the model. Default is 0.1", default=0.1, type=float)parser.add_argument('--presence_penalty', help="set the presence penalty for the model. Default is 0.1", default=0.1, type=float)parser.add_argument("--update", "-u", help="Update patterns", action="store_true")parser.add_argument("--pattern", "-p", help="The pattern (prompt) to use")parser.add_argument("--setup", help="Set up your fabric instance", action="store_true")parser.add_argument('--changeDefaultModel',help="Change the default model. For a list of available models, use the --listmodels flag.")parser.add_argument("--model", "-m", help="Select the model to use")parser.add_argument("--listmodels", help="List all available models", action="store_true")parser.add_argument('--remoteOllamaServer',help='The URL of the remote ollamaserver to use. ONLY USE THIS if you are using a local ollama server in an non-default location or port')parser.add_argument('--context', '-c',help="Use Context file (context.md) to add context to your pattern", action="store_true")args = parser.parse_args()home_holder = os.path.expanduser("~")config = os.path.join(home_holder, ".config", "fabric")config_patterns_directory = os.path.join(config, "patterns")config_context = os.path.join(config, "context.md")env_file = os.path.join(config, ".env")if not os.path.exists(config):os.makedirs(config)if args.setup:Setup().run()Alias().execute()sys.exit()if not os.path.exists(env_file) or not os.path.exists(config_patterns_directory):print("Please run --setup to set up your API key and download patterns.")sys.exit()if not os.path.exists(config_patterns_directory):Update()Alias()sys.exit()if args.changeDefaultModel:Setup().default_model(args.changeDefaultModel)sys.exit()if args.gui:run_electron_app()sys.exit()if args.update:Update()Alias()sys.exit()if args.context:if not os.path.exists(os.path.join(config, "context.md")):print("Please create a context.md file in ~/.config/fabric")sys.exit()if args.agents:standalone = Standalone(args)text = ""  # Initialize text variable# Check if an argument was provided to --agentsif args.text:text = args.textelse:text = standalone.get_cli_input()if text:standalone = Standalone(args)standalone.agents(text)sys.exit()if args.session:from .helper import Sessionsession = Session()if args.session == "default":session_file = session.find_most_recent_file()if session_file is None:args.session = "default"else:args.session = session_file.split("/")[-1]if args.clearsession:from .helper import Sessionsession = Session()session.clear_session(args.clearsession)if args.clearsession == "all":print(f"All sessions cleared")else:print(f"Session {args.clearsession} cleared")sys.exit()if args.sessionlog:from .helper import Sessionsession = Session()print(session.session_log(args.sessionlog))sys.exit()if args.listsessions:from .helper import Sessionsession = Session()session.list_sessions()sys.exit()standalone = Standalone(args, args.pattern)if args.list:try:direct = sorted(os.listdir(config_patterns_directory))for d in direct:print(d)sys.exit()except FileNotFoundError:print("No patterns found")sys.exit()if args.listmodels:gptmodels, localmodels, claudemodels, googlemodels = standalone.fetch_available_models()print("GPT Models:")for model in gptmodels:print(model)print("\nLocal Models:")for model in localmodels:print(model)print("\nClaude Models:")for model in claudemodels:print(model)print("\nGoogle Models:")for model in googlemodels:print(model)sys.exit()if args.text is not None:text = args.textelse:text = standalone.get_cli_input()if args.stream and not args.context:if args.remoteOllamaServer:standalone.streamMessage(text, host=args.remoteOllamaServer)else:standalone.streamMessage(text)sys.exit()if args.stream and args.context:with open(config_context, "r") as f:context = f.read()if args.remoteOllamaServer:standalone.streamMessage(text, context=context, host=args.remoteOllamaServer)else:standalone.streamMessage(text, context=context)sys.exit()elif args.context:with open(config_context, "r") as f:context = f.read()if args.remoteOllamaServer:standalone.sendMessage(text, context=context, host=args.remoteOllamaServer)else:standalone.sendMessage(text, context=context)sys.exit()else:if args.remoteOllamaServer:standalone.sendMessage(text, host=args.remoteOllamaServer)else:standalone.sendMessage(text)sys.exit()if __name__ == "__main__":main()

prompt pattern

pattern 格式基本如下

├── summarize_debate
│   └── system.md
├── summarize_git_changes
│   └── system.md
├── summarize_git_diff
│   └── system.md
├── summarize_lecture
│   └── system.md
├── summarize_micro
│   ├── system.md
│   └── user.md
├── summarize_newsletter
│   ├── system.md
│   └── user.md
├── summarize_paper
│   ├── README.md
│   ├── system.md
│   └── user.md
├── summarize_prompt
│   └── system.md
├── summarize_pull-requests
│   ├── system.md
│   └── user.md
├── summarize_rpg_session
│   └── system.md

看下 summarize_prompt/system.md ,重点是结构化

# IDENTITY and PURPOSE
You are an expert prompt summarizer. You take AI chat prompts in and output a concise summary of the purpose of the prompt using the format below.
Take a deep breath and think step by step about how to best accomplish this goal using the following steps.# OUTPUT SECTIONS
- Combine all of your understanding of the content into a single, paragraph.
- The first sentence should summarize the main purpose. Begin with a verb and describe the primary function of the prompt. Use the present tense and active voice. Avoid using the prompt's name in the summary. Instead, focus on the prompt's primary function or goal.
- The second sentence clarifies the prompt's nuanced approach or unique features.
- The third sentence should provide a brief overview of the prompt's expected output.# OUTPUT INSTRUCTIONS
- Output no more than 40 words.
- Create the output using the formatting above.
- You only output human readable Markdown.
- Do not output numbered lists or bullets.
- Do not output newlines.
- Do not output warnings or notes.# INPUT:
INPUT:

  • github
  • AI 博客 - 从零开始学AI
  • 公众号 - 从零开始学AI

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

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

相关文章

原来没分库分表,后期如何分库分表?

MySQL 后期进行分库分表是一项复杂的任务,需要仔细规划和逐步实施。以下是一个详细的步骤指南,帮助你在现有系统上实施分库分表: 1. 分析现有系统 评估当前数据库的表和数据量:确定哪些表的数据量和访问量最大,哪些表…

开源公司网站源码系统,降低成本,提升效率 附带完整的安装代码包以及搭建教程

系统概述 开源公司网站源码系统是一个基于开源技术的网站建设解决方案。它提供了完整的网站框架和功能模块,允许企业快速搭建起一个功能齐全、设计美观的企业网站。该系统不仅降低了网站开发的成本,还大大提高了建设效率,使企业能够更快地将…

深入Scikit-learn:掌握Python最强大的机器学习库

Scikit-learn是一个基于Python的开源机器学习库,广泛用于数据挖掘和数据分析。以下是一些Scikit-learn中常用知识点的代码演示: 1. 导入库和准备数据 # 导入所需的库 from sklearn import datasets from sklearn.model_selection import train_test_sp…

ActiViz中的点放置器vtkPointPlacer

文章目录 1. vtkPointPlacer2. vtkFocalPlanePointPlacer3. vtkPolygonalSurfacePointPlacer4. vtkImageActorPointPlacer5. vtkBoundedPlanePointPlacer6. vtkTerrainDataPointPlacer1. vtkPointPlacer 概述: vtkPointPlacer是一个基类,用于确定在三维空间中放置点的最佳位…

泛微开发修炼之旅--37通过js实现监听下拉框,并触发后端接口,改变其他控件内容的实现方法与源码(含pc端和移动端实现)

文章链接:37通过js实现监听下拉框,并触发后端接口,改变其他控件内容的实现方法与源码(含pc端和移动端实现)

Java Spring 事物处理

一、定义 事务(Transaction)是指作为单个逻辑工作单元执行的一系列操作。操作要么全部成功执行,要么全部失败回滚,以确保数据的一致性和完整性。 二、特性 原子性(Atomicity):事务被视为不可分…

flutter Navigator跳转报错

Navigator operation requested with a context that does not include a Navigator. The context used to push or pop routes from the Navigator must be that of a widget that is a descendant of a Navigator widget. 这个报错是:因为你尝试使用 Navigator 操…

游戏AI的创造思路-技术基础-决策树(2)

上一篇写了决策树的基础概念和一些简单例子,本篇将着重在实际案例上进行说明 目录 8. 决策树应用的实际例子 8.1. 方法和过程 8.1.1. 定义行为 8.1.2. 确定属性 8.1.3. 构建决策树 8.1.4. 实施行为 8.1.5. 实时更新 8.2. Python代码 8. 决策树应用的实际例子…

滑动窗口,最长子序列最好的选择 -> O(N)

最近在学校上短学期课程,做程序设计题,一下子回忆起了大一学数据结构与算法的日子! 这十天我会记录一些做题的心得,今天带来的是对于最长子序列长度题型的解题框架:滑动窗口 本质就是双指针算法: 通过le…

Vue路由传参和接参如何实现

在Vue中,使用Vue Router进行页面路由跳转时,经常需要传递参数到目标页面(组件)并在目标页面(组件)中接收这些参数。Vue Router提供了几种方式来实现路由传参和接参,主要包括通过URL的查询参数&a…

模拟生成高斯随机数序列

模拟和生成高斯随机数序列(服从标准正态分布的随机变量) Box-Muller 法 & Marsaglia 极坐标法 Box-Muller:使两个独立的均匀分布生成一个高斯分布。 Box-Muller方法的基本思想是利用两个独立的均匀分布随机变量的关系来生成高斯分布的…

Elasticsearch 多索引/多类型搜索

Elasticsearch,简称ES,是一个建立在Apache Lucene基础上的开源搜索引擎,它支持近乎实时的数据存储和检索,并具有良好的扩展性,可以处理PB级别的数据。在复杂的应用场景中,经常需要跨多个索引或类型进行搜索…

AcWing 1633:外观数列

【题目来源】https://www.acwing.com/problem/content/1635/【题目描述】 外观数列是指具有以下特点的整数序列:D, D1, D111, D113, D11231, D112213111, ...其中 D 是一个 [0,9] 范围内的不等于 1 的整数。 序列的第 n1 项是对第 n 项的描述。比如: 第 …

编程语言成长经历:探索、挑战与蜕变

编程语言成长经历:探索、挑战与蜕变 在数字化时代,编程语言无疑成为了连接人与机器的重要桥梁。回首我的编程语言成长经历,仿佛是一段充满探索、挑战与蜕变的旅程。 四个方面:初识编程的迷茫与好奇 当我第一次接触编程语言时&a…

Ubuntu与Windows通过WIFI与以太网口共享网络,Ubuntu与Windows相互ping通,但ping百度失败

Linux开发板(正点原子阿尔法_IMX6U)与Ubuntu的文件传输SCP 报错 SSH: no matching host key type found. Their offer: ssh-rsa-CSDN博客 前面的文章提到了如何将Ubuntu与Windows通过WIFI共享网络给以太网,从而实现Linux开发板、Ubuntu、Win…

香港优才计划续签难吗?一次性说清楚优才续签要求,不在香港居住也能续签成功!

香港优才计划续签难吗?这个问题对考虑申请优才的人来说,还是挺重要的。我们申请优才,最关注的2个问题,一个是获批,还有一个就是续签了。 毕竟我们费那么大功夫申请优才,可不只是为了一个为期3年的香港临时…

数据结构第20节 快速排序以及优化

快速排序是一种非常高效的排序算法,由英国计算机科学家托尼霍尔(Tony Hoare)在1960年代发明。它使用分治法(Divide and Conquer)策略来把一个序列分为较小的部分,然后递归地排序这些部分。 快速排序的基本…

Python 实现Word文档中提取表格数据并转换为CSV和JSON格式

python实现Word文档中提取表格数据 前言1.解析Word文档中的表格2.保存表格数据3.处理文件夹中的多个Word文档4.总结 前言 在日常工作中,我们经常需要处理大量的Word文档,其中包含各种表格数据。手动整理这些表格不仅耗时且容易出错。因此,开…

如何分析软件测试中发现的Bug!

假如你是一名软件测试工程师,每天面对的就是那些“刁钻”的Bug,它们像是隐藏在黑暗中的敌人,时不时跳出来给你一个“惊喜”。那么,如何才能有效地分析和处理这些Bug,让你的测试工作变得高效且有趣呢?今天我…

MongoDB - 集合和文档的增删改查操作

文章目录 1. MongoDB 运行命令2. MongoDB CRUD操作1. 新增文档1. 新增单个文档 insertOne2. 批量新增文档 insertMany 2. 查询文档1. 查询所有文档2. 指定相等条件3. 使用查询操作符指定条件4. 指定逻辑操作符 (AND / OR) 3. 更新文档1. 更新操作符语法2. 更新单个文档 updateO…