Recent Posts

Pages: 1 2 3 [4] 5 6 7 8 9 10
31
Technical Support / Downloading history on activity page
« Last post by Urdawg1234 on December 30, 2024, 06:38:28 pm »
Hi, I'm trying to download my cointracking.info report from the download history button on the activity page in Bitshares-ui. It works on some of my accounts but not others that have more activity.
When I use blocksights.info block explorer it can export the history but only in raw format.
I noticed blocksights.info is using the API call https://api.bitshares.ws/openexplorer/export/account_history?account_id=1.2.102864 to download the history.
Is there an API call I can use to download the cointracking.info report or is that being done in the UI?

Thanks,
32
据称可以和任何区块链交互的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
33
中文 (Chinese) / 各种跨链方案
« Last post by ebit on December 29, 2024, 03:01:00 am »
最简单的一种是把跨链当发币平台来操作。因为,我们有了发币和网关系统,没有跨链系统,但是,可以变通实现跨链。

大牛币 是超级狗, [2024/12/29 9:54]
我想到一个跨链思路。在solana的pumpfun发一个币10亿,在比特股发一个同样数量的币,这样总量20亿。solana那边得用sol购买,我们这边给有流动性的池子和网格空投。如何跨链呢?压力在solana那边,项目方需要自购一部分。如果想减轻压力,比特股这边空投释放的慢一点就行。空投覆盖面广,但是一周或一月空投一次,数量少。

大牛币 是超级狗, [2024/12/29 9:56]
优点:网关跑路,损失可控

能刺激池子和网格进一步成长
为比特股增加一个核心资产,多一些池子网格
实现比特股社区走出去的第一步
solana那边如果想包装的更好,就在AIagent平台发行,和ai16z站在一起。
如vvaifu.fun


比特股社区这边的包装:预售部分:bts融资分八成,bts质押分两成。空投部分:活跃的网格和池子。


solana那边压力最终解决方案:发一个新币跨链。如何解释换币:创造一个新的概念:比特股挖矿发币平台。既然是发币平台就可以发很多个。这样比特股的身份也提高了,成为了真正的网关鼻祖,dex鼻祖,自由发币鼻祖。


发币的钱从哪里来?手续费收入和机器人搬砖收入,及做市利润。
发什么币,要用比特股这边的持币权重投票挑选。
34
看不懂
???
看看他们的代码
@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 网络等等,都有新的意义和场景。
35
看不懂
???
36
General Discussion / Re: A Libertarian Alternative to Patents and Copyright (DAC)
« Last post by abit on December 27, 2024, 05:13:48 pm »
I'm am REALLY interested in the copyright DAC.
The thing is, I don't like the mecanism proposed. "how much would a monopoly on X be worth?" Seems like it's a statist way to think. I believe this question would make no sense in 50 years.

Does anyone have another way to track the value of a new song? How could you bet on it? This is the key!

This is driving me nuts. If we can figure out a simple way for your average joe to bet on a new song going viral, it will change the music industry more than napster did.

Bytemaster was saying there wouldn't need to be an end date to the bet. How exactly would that work?



It sounds like you're envisioning a revolutionary way to value creative works without traditional frameworks. The challenge lies in creating a decentralized system, like using blockchain for tracking virality metrics. False patent marking parallels this—just as it misrepresents innovation, relying on outdated mechanisms to value songs could misrepresent true market dynamics. A betting model might leverage streaming data or social media trends to predict virality, with transparent, open-ended mechanisms rewarding accurate forecasts. Could a tokenized staking system help bridge the gap between creativity and predictive markets?

Can you please answer me, are you a bot? You're replying to a 10-year old thread.
37
General Discussion / Re: Bootstrapping Bitshares DEX Liquidity
« Last post by abit on December 27, 2024, 05:06:44 pm »
You're keep saying "what to do".
I'm saying "how to do", "who to do the work", "at what cost", "who pays for the work".

You say "you ..."
I can say "you ..." too.
But who are "we"?
What do "we" do?
38
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
39
Paul Bearden, a game developer, succeeded BM and became the new preacher of the bitshares. His information is here: http://biocode-x.wikidot.com/ His Twitter: https://x.com/Diorthotis
保罗·比尔登Paul Bearden,一位游戏开发者,接替BM,成为比特股新的布道者。他的资料在这里:http://biocode-x.wikidot.com/  他的推特:https://x.com/Diorthotis
欢迎更多比特股布道者加群,绑定rader机器人进行推特推广。Welcome more bitshares preachers to join the group and bind the rader robot for Twitter promotion.
https://t.me/bitsharesrobotdex
40
保罗·比尔登Paul Bearden,一位游戏开发者,接替BM,成为比特股新的布道者。他的资料在这里:http://biocode-x.wikidot.com/  他的推特:https://x.com/Diorthotis

更多社区讨论:
https://hive.blog/bitshares/@freehiveblog/breaking-news-for-bitshares-developers-and-users-grok-is-now-free-on-x-and-it-s-here-to-boost-your-crypto-promotions

https://hive.blog/technology/@vimukthi/the-path-to-turn-hive-into-an-ai-play-in-this-market-cycle-9qb
Pages: 1 2 3 [4] 5 6 7 8 9 10