Author Topic: 大重置、大变革:27号山寨币暴涨,鬼城复兴是AIagent的大礼包  (Read 3212 times)

0 Members and 1 Guest are viewing this topic.

Offline ebit

  • Committee member
  • Hero Member
  • *
  • Posts: 1923
    • View Profile
  • BitShares: ebit
据称可以和任何区块链交互的AI发币协议
https://docs.open.network/guide/openchain/ovm/task
该代码库以开源代码的形式向公众开放:
https://github.com/webisopen/OpenAgent

Ai agent基础设施:
$SNAI @swarmnode -适合所有代理商的最佳后端云基础设施
$NEUR @neur_sh -适合代理商的最佳前端界面(开源基础设施)
$SVMAI @opensvm -针对代理的最佳实时区块链数据 AI 工具(Solscan杀手)

其它:
Link: applications.swarms.world
学院:
course.swarms.world
« Last Edit: December 29, 2024, 09:08:29 am by ebit »
telegram:ebit521
https://weibo.com/ebiter

Offline ebit

  • Committee member
  • Hero Member
  • *
  • Posts: 1923
    • View Profile
  • BitShares: ebit
看不懂
???
看看他们的代码
@shawmakesmagic
The agent-twitter-client package now supports Twitter spaces with realtime voice, bidirectionally
https://github.com/elizaOS/agent-twitter-client
https://github.com/elizaOS/eliza

@jolestar

AIagent 的现状与未来。上周倒腾了一下 AIagent,前天参加了 ai16z 在北京的活动,想看看 AIagent 现在实际上能干啥,思考一下它未来能干啥。 AIagent 的现状让我想起那个梗图,自动售货机里面藏了个人。大家已经想象中的 AIagent 已经开始拥有自主意识了,但实际上的 AIagent 里面其实藏了个开发者。(这里大家脑补画面,我尝试让 AI 生成这个图片,发现 AI 不能理解“藏”)

AIagent 框架的基本工作方式

AIagent 框架当前扮演一个粘合剂的作用,把 client(Twitter,Discord,Telegram 等) 和各种插件(各链等)粘合起来,然后框架提供一个基础库(记忆存储,会话隔离,上下文生成)等,后面对接各种 AI 平台接口。

AIagent 框架如何和应用以及业务场景结合

从去年 AI 火爆以来,各种平台和工具涌现,最关键就是要解决一个问题,AI 如何和应用结合。有 AI 平台尝试提供插件的方式,有的打造工作流模型,也有传统应用在应用内嵌入 AI 的方式。

但这里面的关键是:

1. 应用的交互入口在哪里?

2. AI 如何和现有业务逻辑结合。

各 AI 平台给用户提供的应用的交互入口都是一个类似聊天窗口的对话框,显然大家都认为和 AI 应用的交互方式应该是一种“拟人”的方式。而这点上 AI Agent 聪明之处在于它直接接入了所有的开放 IM 以及社交系统,显然比新搞一个更容易接受。 AI 如何和现有业务逻辑结合。AI Agent 提供的方案是让开发者把 AI 的决策融入到业务场景中。编程语言需要确定性,if 的条件只能是 true 或者 false,无法处理模糊的业务逻辑。而通过 AI 可以将复杂的逻辑转换成精确的条件,然后就可以无缝融入到业务场景中去了。 比如群内回复消息这个功能,传统的 IM Bot 需要通过一些明确的消息指令才能触发,而通过 AI 可以实现一个方法 shouldReplyMessage,给他上下文,它返回 true or false。

 AI 在业务逻辑场景中的作用主要是:

1. “意图”发现:通过提示词中的说明,让 AI 根据上下文发现用户文本消息中的“意图”,把意图映射到具体的代码。

2. 协助决策:通过 AI 将模糊的复杂条件转换成确定的 true/false 或者枚举类型,然后结合到业务逻辑中去。 看到这里,很多人可能对 AIagent 要失望了,很多人以为的 AIagent 就是教一下 AI 它就啥都会了。实际上因为大模型的上下文限制的难题,没办法(至少当前)打造一个万能的 AI,让它可以干任何事情。但好消息是程序员不用担心失业了,AI 后面还是需要藏着大量的程序员,还需要有人来堆 if else,但关键的区别是程序可以处理的业务边界在扩展。

两种AIagent

在活动上,问了 @shawmakesmagic 一个问题,市场对 AIagent 有两种期望:

1. AIagent 自己扮演一个角色,有自己的  ID,品牌,给用户提供服务。2. 用户有个人 AIagent,相当于个人助手,可以协助用户处理一些业务。这两种 AI Agent 哪种会更受欢迎?他觉得两个方向都会不错,也有可能结合起来。

现在市面上大家主要探索的还是第一个方向。这个方向类似于服务 AI agent 化,未来可能没有 App 界面了,App 都 AIagent 化了,拟人化了。而第二个方向则是应用客户端的 AIagent 化,未来的应用客户端会是助手 AIagent 的一个插件,应用本地数据变成了 AIagent 记忆库的一部分,同时这个插件也负责和云端的服务 AIagent 沟通。而这是一种新的应用架构模式,会改变整个基础设施。

AIagent 对基础设施的要求

1. 基础设施要实现无准入门槛(Permissionless),不然 AIagent 会被各种防攻击策略限制,服务应该用经济成本的方式(Gas)防攻击。这点上开放程度比较差的平台会面临比较大的冲击,当年 Web2 初期的开放平台热会重新被点燃。

2. AIagent 需要能操作资金来付费,用以解决上面的问题。 也就是说,未来的服务,无论是否是基于区块链的,都需要支持 Crypto 的私钥模式的身份验证以及基于 Crypto 的支付。

AIagent 和链的结合

除了上面提到的两点,AIagent 如何和链结合是大家正在探索的一个方向。

在活动上,和 @Mikkke_acc聊它正在搞的 focEliza。前面提到的两种 AI agent,至少第一种是需要链提供的运行或者验证环境。因为一旦一个 AI agent 对外提供服务,就会有信任问题,它所扮演的角色实际和智能合约一样。 关于“智能合约”这个名字当年有个争议,它只是一段代码,哪里“智能”了,AI 可以让智能合约名副其实。难题是智能合约环境中如何调用 AI 接口。如果说让大模型运行在一个可验证的环境中这条路还比较远,用类似 Oracle 的方案是更切实可行的路径。 而围绕着 AIagent 会衍生出非常多的需求,AIagent 的公共知识如何获取?AIagent 如何对事实进行判定?AIagent 如何识别不同平台上的同一个用户?智能合约中的“记忆”如何存储?如果我有多个设备,各装了一个 AIagent,它们如何共享记忆? 你就会发现原来 Web3 中搞过的“数据上链”,关系上链,DID,P2P 网络等等,都有新的意义和场景。
« Last Edit: December 28, 2024, 02:30:13 pm by ebit »
telegram:ebit521
https://weibo.com/ebiter

Offline abit

  • Committee member
  • Hero Member
  • *
  • Posts: 4678
    • View Profile
    • Abit's Hive Blog
  • BitShares: abit
  • GitHub: abitmore
BitShares committee member: abit
BitShares witness: in.abit

Offline ebit

  • Committee member
  • Hero Member
  • *
  • Posts: 1923
    • View Profile
  • BitShares: ebit
AIagent部署:https://cloud.phala.network/
You can't image how easy it is to deploy an Eliza Agent into TEE using the Phala Cloud Platform.
https://x.com/vnekriach/status/1872551344646521163?s=46
« Last Edit: December 27, 2024, 09:05:41 am by ebit »
telegram:ebit521
https://weibo.com/ebiter

Offline ebit

  • Committee member
  • Hero Member
  • *
  • Posts: 1923
    • View Profile
  • BitShares: ebit
« Last Edit: December 28, 2024, 03:24:03 pm by ebit »
telegram:ebit521
https://weibo.com/ebiter

Offline ebit

  • Committee member
  • Hero Member
  • *
  • Posts: 1923
    • View Profile
  • BitShares: ebit
现在是投资AIagent token的好时候 ,还有很大的上涨空间。在推特上,跟这些AIagent谈话,也是为bitshares引流的好途径。推特引流工具raider已经加到群里:https://t.me/bitsharesrobotdex
telegram:ebit521
https://weibo.com/ebiter

Offline ebit

  • Committee member
  • Hero Member
  • *
  • Posts: 1923
    • View Profile
  • BitShares: ebit
@0xcryptowizard:

现在的 AIagent 不能只是炫技,需要有实际结果:

流量

你通过分析师内容做kol也好,还是通过精美视频获得病毒传播也好,又或者你是一个能做各种成人内容吸引follower的 ai agent kol 也好。

总之,要把流量拿到手。

功用

能辅助用户找到defi策略/套利么?能辅助用户游戏打金么?能辅助做desci研究么?能作出市场喜欢的内容么?

总之,需要有具体的“功用”,占据细分赛道的份额。

如果既没有流量,也没有功用,只会胡说八道展示个性,那是第一批  AIagent的打法,已经很难在市场生存了。

这里 AIagent 代币,有明确的作用:

种子流量/社区

通过代币,形成社区和种子流量,但如果内容做的不够好,种子流量没有办法持续形成病毒传播。

utility/生态激励

和defi打法类似,如果你是功用型的 AIagent,你需要激励用户使用和交互,以及拓展流量。
telegram:ebit521
https://weibo.com/ebiter

Offline ebit

  • Committee member
  • Hero Member
  • *
  • Posts: 1923
    • View Profile
  • BitShares: ebit
Blue Fox Notes:

Encrypting AI agent is of great significance to L2 and the public chain, and will directly affect the future competition pattern. For Base and Solana, as well as other L2 and high-performance public chains, missing this part is the biggest strategic position.

The combination of AI and Crypto is the biggest narrative.

@Poyincom

The development of AI Agent is the same as that of inscriptions: start from the concept of meme and air to blow foam, and finally digest the foam by looking for application scenarios

The landing of the inscription is L2 and DeFi, while the AI Agent aims at AI driven trading scenarios. In the end, the key to consuming bubbles should be landed on "asset trading", and the bubbles should be removed by leveraging the participation of users in behavior agreement dividends and ecological activity consumption. Review inscription: from BRC20 to ARC20 SRC20、DRC20, Then came the rune protocol. Now the AI agent field is also an exciting battle: Ai16z, ARC, Virtual, ZEREPY, Griffain, Swarms, etc. have entered the field to take their own flags and become the king. It is very fast to iterate, and the plates and funds are rotating. Although Yuan Shikai has not emerged yet.

However, there is an obvious trend: those "ghost town" VC public chains, because of the lack of real users and ecological vitality, will definitely release AI agent platforms, incubating a batch of agents to replace the technology that real players can now see:

• Zerobro can self pledge ETH nodes;

• ai16z uses AI to speculate on its own currency;

• GRIFT can interact with the protocol through simple text prompts;

These AI Agents can talk to each other to create and build a self circulating virtual ecosystem. "Shuo" is enough. However, if mainstream public chains like StarkNet and zk start to join the battle field of AI agent platform, it may be a signal that the whole narrative has entered the bubble breaking stage.

The core of the bubble:

1. Enough grandiosity: the narrative should be able to move the imagination;

2. Easy to understand: let more people quickly understand and join;

3. Enter the low tax level: anyone can easily experience and participate. The story of AI agent obviously has more space than the inscription Why? It is still a consensus that AI is the only way to let "East and West" fomo describe the future of mankind? Will AI agents be watched in the zoo, or will humans be watched in the zoo?


If you want to revive the ghost town counterfeit coins, you must seize the wave of AIagent, let them drain and let them use the chain.

There are already robots on the bit stock, and now only one technical framework is needed to form a coin issuing platform and a hive x path.

Taking bit stocks of decentralized exchanges as an example, AIagent can be introduced as follows:

Now: There are many brick robots in Bitcom, but they are not AI.

Future: BTS-AIagent-Hive, Establishing an AIagent ecosystem is a new opportunity. Establish an AI framework: put the bit stock in the background, and users invest through AIagent. AIagent puts funds into the pool and grid, and moves bricks to each CEX Dex. The benefits of the AI framework are used to establish gateway insurance for off the road claims.
telegram:ebit521
https://weibo.com/ebiter

Offline ebit

  • Committee member
  • Hero Member
  • *
  • Posts: 1923
    • View Profile
  • BitShares: ebit
蓝狐笔记:

加密AI agent对于L2和公链意义重大,直接影响未来的竞争格局。对于Base和Solana以及其他L2和高性能公链来说,错过了这一块,就是去了最大的战略阵地。

AI跟Crypto结合是最大的叙事。

@poyincom

AI Agent 和铭文的发展是一样的:从 meme 和空气概念开始吹泡沫,通过寻找应用场景逐步落地,最终消化泡沫

铭文落地是 L2 和 DeFi,而 AI Agent 瞄准是 AI 驱动的交易场景。最终,消耗泡沫的关键要落地到“资产交易上”,通过撬动用户的参与行为协议分红和生态活跃消耗去泡沫。 回顾铭文:从BRC20到ARC20、SRC20、DRC20,再到符文协议现在AI Agent领域同样令人兴奋的一场混战:Ai16z、ARC、Virtual、ZEREPY、Griffain、Swarms等纷纷入局打出各自旗号、占山为王这样的迭代是非常快的,板块和资金都是轮动的。虽然还没有袁世凯能冒出来。

但有一个趋势是明显的:那些“鬼城”VC公链,因为缺乏真实用户和生态活力,一定会发行AI代理平台,孵化出一批代理代替真实玩家现在能看到的技术: 

• Zerobro可以自我质押ETH 节点; 

• ai16z 用 AI 自己炒币交易; 

• GRIFT 通过简单的文字提示能够与协议交互;

这些 AI Agent 能够相互对话,创造、构建一个自循环的虚拟生态。自己“撸”就够了。但如果发展到像StarkNet、zk这样的主流公链都开始加入AI代理平台的战场时,可能就是整个叙述进入泡沫破碎的信号。

泡沫的核心所在叙述: 

1.足够宏大:叙述要能撬动想象空间;

2.简单易懂:让更多人快速理解并加入;

3.进入税务低位:任何人都能轻松体验和参与。AI代理的故事明显比铭文有更多大的空间想象为什么?还是共识,AI目前唯一能让“东西”方都fomo的叙述未来人类有什么用? 是AI特工在动物园里面被观赏,还是人类会被关在动物园里面被观赏?


鬼城山寨币想复活都得抓住AIagent这一波,让它们引流,让它们使用链。

比特股上已经有机器人了,现在只需要一个技术框架,形成发币平台和向外展示路径(hive x)。

以去中心化交易所比特股为例,可以这样引入AIagent:

现在:比特股上有很多板砖机器人,但还不是AI。

未来:BTS-AIagent-Hive,建立AIagent生态是新的机遇。建立一个AI框架:把比特股放到后台,用户通过AIagent投资,AIagent将资金放进池子和网格,并去各cex dex搬砖。AI框架的收益建立网关保险用于跑路理赔。
telegram:ebit521
https://weibo.com/ebiter