Skip to content

Commit 40dfa4c

Browse files
fix(docs): fixes broken links (#1127)
1 parent 434d11b commit 40dfa4c

File tree

15 files changed

+30
-30
lines changed

15 files changed

+30
-30
lines changed

pages/concepts/fetch-network/almanac.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Contrarily, the [Almanac ↗️](/references/contracts/uagents-almanac/almanac-o
3131
</Callout>
3232

3333
<Callout type="info" emoji="ℹ️">
34-
For additional information on the Agentverse and its tools, visit our dedicated [concepts ↗️](/concepts/agent-services/agentverse-intro) and [guides ↗️](/guides#agentverse) resources to start developing your Agents straightforwardly using the Agentverse **Agent Editor**.
34+
For additional information on the Agentverse and its tools, visit our dedicated [concepts ↗️](/concepts/agent-services/agentverse-intro) and [guides ↗️](/guides) resources to start developing your Agents straightforwardly using the Agentverse **Agent Editor**.
3535
</Callout>

pages/concepts/fetch-network/intro-fetch-network.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ As a complementary tool to the above ones, [CosmPy ↗️](/guides/fetch-network
3030

3131
These components together constitute the backbone structure of the Fetch Network. These tools are essential in enabling a decentralized economy of autonomous Agents and AI-driven Agent Functions. By leveraging the Fetch Ledger, Almanac Contract, FNS, Jenesis, and CosmPy, the Fetch Network focuses on creating an environment where agents can autonomously manage tasks, interact with each other, and create value in a secure and scalable way.
3232

33-
The FET token empowers the Fetch Ecosystem, providing the economic incentive and governance framework necessary for the sustainability and evolution of the Network itself. The token acts both as the medium of exchange and the incentive structure for participants, while supporting the Network's governance and staking mechanisms.
33+
The FET token empowers the Fetch Ecosystem, providing the economic incentive and governance framework necessary for the sustainability and evolution of the Network itself. The token acts both as the medium of exchange and the incentive structure for participants, while supporting the Network's governance and staking mechanisms.

pages/concepts/fetch-network/ledger/validators.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Callout } from 'nextra/components'
66

77
A **blockchain** is a series of data records that functions as a distributed, replicated digital ledger of transactions across a network of computer systems. On blockchains, the records of transactions are compiled into **blocks** which are linked together to form a chain. Thus, blockchains consists of a stable chain of blocks and each one of these blocks stores a list of previously confirmed transactions.
88

9-
These transactions take place inside a [peer-to-peer (P2P) ↗️](https://www.investopedia.com/terms/p/peertopeer-p2p-service.asp) global network, thus, blockchains are considered minimize and immune to censorship. A blockchain network serves as a decentralized ledger since it is maintained by several computers located all over the world. This implies that each participant, namely a **node**, keeps a copy of the blockchain data and interacts with other participants to make sure that everyone is aware of the same information stored in the block.
9+
These transactions take place inside a peer-to-peer (P2P) global network, thus, blockchains are considered minimize and immune to censorship. A blockchain network serves as a decentralized ledger since it is maintained by several computers located all over the world. This implies that each participant, namely a **node**, keeps a copy of the blockchain data and interacts with other participants to make sure that everyone is aware of the same information stored in the block.
1010

1111
A blockchain, including the **Fetch.ai Ledger**, provides a secure and transparent way to record transactions, enabling trustless interactions between parties and removing the need for a central authority to overlook transactions.
1212

pages/examples.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ import { AgentsIcon, LedgerIcon, AgentverseIcon} from "src/icons/main-page-icons
6060
title: "Asynchronous Loops",
6161
path: "/examples/advanced/async-loops"
6262
},
63+
{
64+
title: "Agents broadcast",
65+
path: "/examples/intermediate/broadcast"
66+
},
6367
{
6468
title: "On Query decorator",
6569
path: "/examples/intermediate/on-query"
@@ -102,10 +106,6 @@ import { AgentsIcon, LedgerIcon, AgentverseIcon} from "src/icons/main-page-icons
102106
title: "Agents communication with Mailbox",
103107
path: "/examples/intermediate/mailbox-agents"
104108
},
105-
{
106-
title: "Agents broadcast",
107-
path: "/examples/intermediate/broadcast"
108-
},
109109
{
110110
title: "Agents Name Service",
111111
path: "/examples/intermediate/name-service"
@@ -130,7 +130,7 @@ import { AgentsIcon, LedgerIcon, AgentverseIcon} from "src/icons/main-page-icons
130130
},
131131
{
132132
title: "Agentverse Functions: register a local agent as a function",
133-
path: "/examples/local-agent-registration"
133+
path: "/examples/agentverse/local-agent-registration"
134134
},
135135
{
136136
title: "Hugging face API agent as a function",

pages/examples/agentverse-api/agent-and-function-api.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Please check out the example code in our [examples repo ↗️](https://github.c
1818

1919
## Steps to get API Tokens
2020

21-
- Go to Profile section in [Agentverse ↗️](https://agentverse.ai/profile/api-keys).
21+
- Go to Profile section in [Agentverse ↗️](https://agentverse.ai/).
2222
- Click on button `+ New API Key`.
2323
- Give name to your API key.
2424
- Click on `write` for `Access to all resources in Agentverse` and click on `Generate API Key`
@@ -429,7 +429,7 @@ print(f"Function Created with name: {name}")
429429

430430
1. Open terminal and go to directory `agents` created above.
431431
2. Make sure `agent.py` and `agent_create.py` are in this directory.
432-
3. Open [Agentverse ↗️](https://agentverse.ai/profile/api-keys) and [generate API keys ↗️](../../guides/apis/agent-function-creation-apis#how-to-get-agentverse-api-tokens).
432+
3. Open [Agentverse ↗️](https://agentverse.ai/) and [generate API keys ↗️](../../guides/apis/agent-function-creation-apis#how-to-get-agentverse-api-tokens).
433433
4. Open script in editor and replace `token`.
434434
5. Run command `python agent_create.py` and enter the required details.
435435
6. Provide Agent and Function Details as asked and check agent and function on Agentverse.

pages/examples/agentverse-api/agent-secret-api.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Please check out the example code in our [examples repo ↗️](https://github.c
1717

1818
## Steps to get API Tokens
1919

20-
- Go to Profile section in [Agentverse ↗️](https://agentverse.ai/profile/api-keys).
20+
- Go to Profile section in [Agentverse ↗️](https://agentverse.ai/).
2121
- Click on button `+ New API Key`.
2222
- Give name to your API key.
2323
- Click on `write` for `Access to all resources in Agentverse` and click on `Generate API Key`
@@ -77,7 +77,7 @@ Please check out the example code in our [examples repo ↗️](https://github.c
7777
## Steps to add secret to agent using API
7878

7979
- Navigate to the directory where the `agent-secret` script is located using the terminal.
80-
- Open [Agentverse ↗️](https://agentverse.ai/profile/api-keys) and [generate API keys](../../guides/apis/agent-function-creation-apis#how-to-get-agentverse-api-tokens).
80+
- Open [Agentverse ↗️](https://agentverse.ai/) and [generate API keys ↗️](../../guides/apis/agent-function-creation-apis#how-to-get-agentverse-api-tokens).
8181
- Open script in editor and replace `fauna_access_token`.
8282
- Run `agent-secret.py` using `python agent-secret.py`.
8383
- Provide agent's address, secret name and secret value.

pages/examples/ai-engine-api/chat_api_example.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Engine ↗️](/concepts/ai-engine/ai-engine-intro) and create [DeltaV ↗️](h
1414

1515
## Steps to get API Tokens
1616

17-
- Go to Profile section in [Agentverse ↗️](https://agentverse.ai/profile/api-keys).
17+
- Go to Profile section in [Agentverse ↗️](https://agentverse.ai/).
1818
- Click on button `+ New API Key`.
1919
- Give name to your API key.
2020
- Click on `write` for `Access to all resources in Agentverse` and click on `Generate API Key`
@@ -736,7 +736,7 @@ Save this script as `chatAPI.py` and replace `email` and `fauna_token` in the sc
736736
Running this app on the terminal:
737737

738738
1. Locate the directory where the script is located.
739-
2. Open [Agentverse ↗️](https://agentverse.ai/profile/api-keys) and [generate API keys ↗️](/guides/apis/agent-function-creation-apis#how-to-get-agentverse-api-tokens).
739+
2. Open [Agentverse ↗️](https://agentverse.ai/) and [generate API keys ↗️](/guides/apis/agent-function-creation-apis#how-to-get-agentverse-api-tokens).
740740
3. Open script in editor and replace `access_token` and `refresh_token`.
741741
4. Run script using python `agent.py`.
742742
5. Provide objective to the script.

pages/guides/agent-courses/agents-for-ai.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ Let's use this address to create a **Mailbox** on the Agentverse.
316316
A **mailbox** is a service provided by Agentverse that allows Agents to receive messages when they're not running online.
317317
The `uagents` library will poll for new messages (and old unread ones) when your Agent is running. Pretty handy.
318318

319-
Let's go to [Agentverse ↗️](https://agentverse.ai/agents/local) and create a Mailbox for this agent.
319+
Let's go to [Agentverse ↗️](https://agentverse.ai/) and create a Mailbox for this agent.
320320

321321
First of all, head over to the **My Agents** tab and click on the **Local Agents** tab.
322322

pages/guides/agents/intermediate/agent-proxy.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ INFO: [mailbox]: Successfully registered as proxy agent in Agentverse
109109

110110
Now that your Agent is connected through the Proxy to the Agentverse, it is able to receive messages from any other Agents.
111111

112-
Using a Proxy enables your Agent to seamlessly interact with the Agentverse, tracking interactions and displaying them on the [Marketplace ↗️](/concepts/agent-services/agent-explorer). These interactions are showcased on the Agent's dedicated page within the [Agentverse My Agents ↗️](/concepts/agent-services/agent-hosting.) tab, providing visibility and engagement opportunities for users exploring the Marketplace.
112+
Using a Proxy enables your Agent to seamlessly interact with the Agentverse, tracking interactions and displaying them on the [Marketplace ↗️](/concepts/agent-services/agent-explorer). These interactions are showcased on the Agent's dedicated page within the [Agentverse: My Agents ↗️](/concepts/agent-services/agent-hosting) tab, providing visibility and engagement opportunities for users exploring the Marketplace.
113113

114114
A Proxy differs from a [Mailbox ↗️](/guides/agents/intermediate/mailbox) in key ways. While a Mailbox stores messages for offline Agents, a Proxy requires the Agent to be online to process incoming messages in real-time. Messages sent to an offline Proxy Agent are dropped, making it suitable for Agents that are continuously running and accessible through a public endpoint.
115115

pages/guides/agents/quickstart.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {CodeGroup, CodeSegment, DocsCode, GithubCodeSegment} from "../../../comp
44

55
This **quickstart guide** quickly guides you through installing the uAgents Framework and building a couple of agents in a few steps.
66

7-
You can find all supporting code files in our dedicated [github repo](https://github.com/fetchai/uAgent-Examples/tree/main/5-documentation/guides/agents/quickstart)
7+
You can find all supporting code files in our dedicated [GitHub repo ↗️](https://github.com/fetchai/uAgent-Examples/tree/main/5-documentation/guides/agents/quickstart)
88

99
## Installation
1010

@@ -338,6 +338,6 @@ Run the scripts to see the agents communicating:
338338

339339
## Reach out to the Team!
340340

341-
Excellent! You are now ready to start exploring the concepts and resources available to start developing your agents on the Fetch Network! if you're keen to skip the more code focused guides, your best next steps would be [Communicating with agents](intermediate/communicating-with-other-agents).
341+
Excellent! You are now ready to start exploring the concepts and resources available to start developing your agents on the Fetch Network! if you're keen to skip the more code focused guides, your best next steps would be [Communicating with agents ↗️](/guides/agents/intermediate/communicating-with-other-agents).
342342

343343
Note that our Team is available on [Discord ↗️](https://discord.gg/fetchai) for any additional inquiry.

pages/guides/agentverse/agentverse-functions/registering-agent-coin-toss.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Make sure you have read the following resources before going on with this guide:
3333

3434
## Create your coin toss agent!
3535

36-
For this navigate to the [Agentverse: My Agents ↗️](https://agentverse.ai/agents) tab and click on the **+ New Agent** button:
36+
For this navigate to the [Agentverse ↗️](https://agentverse.ai/), log in, and head over to the **My Agents** tab. Then, click on the **+ New Agent** button:
3737

3838
![](src/images/guides/agentverse/registering-agent-coin-toss/hosted-agent-use-case-button.png)
3939

@@ -116,7 +116,7 @@ Now click on the **Run** button in the upper right corner of the editor so that
116116

117117
## Register your coin toss agent function!
118118

119-
Similar to the this [guide ↗️](/guides/agentverse/agentverse-functions/registering-agent-services#register-your-agents-and-services), let's navigate to the [Agentverse: My Agents ↗️](https://agentverse.ai/) tab. Here, click on your agent to show the Agent Editor and then click on the **Deploy** tab to start registering your agent function. For Agents build up from a pre-defined Agent, the function will be already available once you build them. Indeed, you will see something similar to:
119+
Similar to the this [guide ↗️](/guides/agentverse/agentverse-functions/registering-agent-services#register-your-agents-and-services), let's head over to the [Agentverse ↗️](https://agentverse.ai/) and select the My Agents tab. Here, click on your agent to show the Agent Editor and then click on the **Deploy** tab to start registering your agent function. For Agents build up from a pre-defined Agent, the function will be already available once you build them. Indeed, you will see something similar to:
120120

121121
![](src/images/guides/agentverse/registering-agent-coin-toss/deploy-coin-toss-function.png)
122122

pages/guides/agentverse/creating-agentverse-agents/simple-dice-roll-agent.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Make sure you have read the following resources before going on with this guide:
2121

2222
## Create your dice roll agent!
2323

24-
For this navigate to the [Agentverse: My Agents ↗️](https://agentverse.ai/agents) tab and click on the **Use case** button. When the dialog is open, select the **DeltaV compatible Dice Roll Agent** use case:
24+
For this navigate to the [Agentverse ↗️](https://agentverse.ai/), log in and select the **My Agents** tab. Here, click on the **Use case** button. When the dialog is open, select the **DeltaV compatible Dice Roll Agent** use case:
2525

2626
![](src/images/guides/agentverse/registering-agent-dice-roll/use-case-dialog.png)
2727

@@ -90,7 +90,7 @@ Now click on the **Run** button in the upper right corner of the editor so that
9090

9191
![](src/images/guides/agentverse/registering-agent-dice-roll/run-hosted-agent.png)
9292

93-
**Great! You have just created your agent starting from a predefined template in Agentverse!** You are now ready to understand how to enroll your agent on the Agentverse and make it retrievable by the [AI Engine ↗️](/concepts/ai-engine/ai-engine-intro) and subsequently [DeltaV↗️](/concepts/ai-engine/deltav).
93+
**Great! You have just created your agent starting from a predefined template in Agentverse!** You are now ready to understand how to enroll your agent on the Agentverse and make it retrievable by the [AI Engine ↗️](/concepts/ai-engine/ai-engine-intro) and subsequently [DeltaV ↗️](/concepts/ai-engine/deltav).
9494

9595
Check out the following resources to better grasps all of these concepts:
9696

pages/guides/apis/agent-function-creation-apis.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ This guide shows how to create **Agents** and **Agent Functions** in Agentverse
3535
```py copy filename="windows"
3636
echo. > agent.py
3737
```
38-
</DocsCode>
38+
</DocsCode>
3939

4040
<DocsCode ubuntu={true}>
4141
```py copy filename="ubuntu"
4242
touch agent.py
4343
```
44-
</DocsCode>
44+
</DocsCode>
4545
</CodeGroup>
4646

4747
<CodeGroup hasCopy isOSFile>
@@ -55,13 +55,13 @@ This guide shows how to create **Agents** and **Agent Functions** in Agentverse
5555
```py copy filename="windows"
5656
echo. > agent_create.py
5757
```
58-
</DocsCode>
58+
</DocsCode>
5959

6060
<DocsCode ubuntu={true}>
6161
```py copy filename="ubuntu"
6262
touch agent_create.py
6363
```
64-
</DocsCode>
64+
</DocsCode>
6565
</CodeGroup>
6666

6767
3. Fill in the scripts with the code presented here below for each one of them:
@@ -382,7 +382,7 @@ This script interacts with the Agentverse API to achieve the Agent and Function
382382

383383
1. Open terminal and go to directory `agents` created above.
384384
2. Make sure `agent.py` and `agent_create.py` are in this directory.
385-
3. Head over to the [Agentverse ↗️](https://agentverse.ai/profile/api-keys) and [generate API keys ↗️](#how-to-get-agentverse-api-tokens).
385+
3. Head over to the [Agentverse ↗️](https://agentverse.ai/) and [generate API keys ↗️](#how-to-get-agentverse-api-tokens).
386386
4. Open script in editor and replace `token` field.
387387
5. Run command `python agent_create.py` and enter the required details.
388388
6. Provide Agent and Function details as asked, then, check agent and function on Agentverse.

pages/guides/apis/secret-management-apis.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This guide provides details on how to use the [Agentverse hosting APIs ↗️](/
1313

1414
### Steps to get API Tokens
1515

16-
- Go to **Profile** section in [Agentverse ↗️](https://agentverse.ai/profile/api-keys).
16+
- Go to **Profile** section in [Agentverse ↗️](https://agentverse.ai/).
1717
- Click on button `+ New API Key`.
1818
- Give name to your API key.
1919
- Click on `write` for `Access to all resources in Agentverse` and click on `Generate API Key`
@@ -149,7 +149,7 @@ The full script should look as follows:
149149
## Steps to add secret to Agent using API
150150

151151
- Navigate to th directory where `agent-secret.py` script is located using your terminal.
152-
- Open [Agentverse ↗️](https://agentverse.ai/profile/api-keys) and [generate API keys ↗️](#how-to-get-agentverse-api-tokens).
152+
- Open [Agentverse ↗️](https://agentverse.ai/) and [generate API keys ↗️](#how-to-get-agentverse-api-tokens).
153153
- Open script in editor and replace `fauna_access_token`.
154154
- Run `agent-secret.py` file using:
155155

pages/guides/fetch-network/reconciliation-service.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ to their funds.
2020
First, make sure you have installed the [ASI Alliance Wallet ↗️](/guides/fetch-network/asi-wallet/web-wallet/get-started)
2121
browser extension, and it has added an account, where you want the recovered funds to be sent to.\
2222

23-
That account must have some funds on it to pay for transaction fee (`1 FET` should be way more then enough).\
23+
That account must have some funds on it to pay for transaction fee (`1 FET` should be way more than enough).\
2424
You can buy FET from different centralized or decentralized exchanges.
2525

2626
Secondly, you also need to make sure you have the [Metamask ↗️](https://metamask.io/) wallet browser extension installed,

0 commit comments

Comments
 (0)