You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fetch.ai is developing a platform to enable the development of an AI empowered agent based decentralized digital economy. Agents are programs that can make choices on their own for individuals, companies, and devices. Agents are the 'doers' of Fetch.ai ecosystem.
18
18
@@ -52,7 +52,7 @@ At a high level, the system isn't too complicated, but let's get into the detail
52
52
Agents are programs designed to operate freely and communicate with whomever they're programmed to. Agents can connect, search, and transact in order to create dynamic markets, and they can be programmed to interact both within their environment and with other agents in the network. Because they're siloed, and decentralized they can safely accomplish particular activities and objectives without requiring human participation. We have a very simple guide in our documentation that gets you started on building an agent to be part [of the network ↗️](/guides/agents/getting-started/create-a-uagent).
53
53
54
54
55
-
At the simplest level, and agent would work as follows:
55
+
At the simplest level, and agent would work as follows:
56
56
57
57
<ImageByTheme
58
58
darkSrc={DarkHighLevelDiagram}
@@ -66,21 +66,21 @@ Of course, many agents in the above workflow can come together to become multi-a
66
66
67
67
68
68
69
-
A simple Agent using the uAgents library could be:
69
+
A simple Agent using the uAgents library could be:
@@ -105,29 +105,29 @@ Agents thrive on iOT devices such as Raspberry Pi, and there are some great exam
105
105
height={400}
106
106
/>
107
107
108
-
FET token is the necessary payment token to create economic opportunity to your agents. FET allows for token transactions of a tiny size 10^-18 of a FET, we call this a nano fet. This system is built for agent economic gain, the best agents should be profitable.
108
+
FET token is the necessary payment token to create economic opportunity to your agents. FET allows for token transactions of a tiny size 10^-18 of a FET, we call this a nano fet. This system is built for agent economic gain, the best agents should be profitable.
109
109
110
110
111
111
```
112
112
from uagents import Agent, Bureau, Context, Model
113
113
from uagents.network import wait_for_tx_to_complete
@@ -174,7 +174,7 @@ We developed Agentverse because we have the requirements for a cloud-based servi
174
174
175
175
### Integration with wallets
176
176
177
-
As we touched on earlier, FET payments between agents are embedded into the uAgents library, as in an open decentralized marketplace it is essential that agents can transact. What we didn’t cover is that by default the uAgents library has support for Fetch.ai wallets. This means that not only can agents interact with the Fetch.ai Ledger to send and receive transactions but it can also query balances, interact with smart contracts, and deploy them.
177
+
As we touched on earlier, FET payments between agents are embedded into the uAgents library, as in an open decentralized marketplace it is essential that agents can transact. What we didn’t cover is that by default the uAgents library has support for Fetch.ai wallets. This means that not only can agents interact with the Fetch.ai Ledger to send and receive transactions but it can also query balances, interact with smart contracts, and deploy them.
178
178
179
179
This integration with the network also strengthens the trust system within the Agentverse and allows you to query transactions performed by any Agent. You can easily see transactions against an agent address, which allows you to infer the history, or trust of an agent. Of course, there are agents for that too.
180
180
@@ -185,7 +185,7 @@ As Agents are open source you can integrate any payment provider you like, from
185
185
### Deploy and run Agents
186
186
187
187
When it comes to deploying an agent on Agentverse, it's a simple process from start to deploy. You can either choose to build an Agent from a blank script, or you can choose to create your Agent based on a specified template.
188
-
On Agentverse.ai you will see we have a My Agents tab, this page allows you to manage your agents and see Agent stats. With a targeted 100% uptime, your Agent will not sleep unless you tell it to. By it being a hosted Agent on the Agentverse, the Agent will always be kept up-to-date on the [Almanac ↗️](/references/contracts/uagents-almanac/almanac-overview) contract.
188
+
On Agentverse.ai you will see we have a My Agents tab, this page allows you to manage your agents and see Agent stats. With a targeted 100% uptime, your Agent will not sleep unless you tell it to. By it being a hosted Agent on the Agentverse, the Agent will always be kept up-to-date on the [Almanac ↗️](/references/contracts/uagents-almanac/almanac-overview) contract.
0 commit comments