From 4d30a6dc1b0f6b4c021a7a92d3a09c18bc8b9794 Mon Sep 17 00:00:00 2001 From: Bryer <0xbryer@gmail.com> Date: Mon, 17 Feb 2025 19:22:23 +0200 Subject: [PATCH 1/2] docs: fix minor grammatical issues in docs --- pages/guides/fetchai-sdk/quickstart.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/guides/fetchai-sdk/quickstart.mdx b/pages/guides/fetchai-sdk/quickstart.mdx index 421538627..b75e1bda5 100644 --- a/pages/guides/fetchai-sdk/quickstart.mdx +++ b/pages/guides/fetchai-sdk/quickstart.mdx @@ -4,7 +4,7 @@ The Fetch.ai SDK gives you easy access to the core components of the uAgents lib Allowing you to create Agents outside the asynchronous library of uAgents. This is really great if you want to build synchronous programs but still have agentic functionalities. -Let's build two simple [Agent ↗️](/guides/agents/getting-started/whats-an-agent) system using Flask, and OpenAI. +Let's build two simple [Agent ↗️](/guides/agents/getting-started/whats-an-agent) systems using Flask, and OpenAI. ## Installation @@ -157,9 +157,9 @@ if __name__ == "__main__": There's a lot to unpack there, but as this is a quickstart, let's just cover the essentials: -An Agent is identifiable by their [seed ↗️](../agents/getting-started/seedphrase); we use this to load in an Agent often with `Identity.from_seed("some str as your seed", 0)` +An Agent is identifiable by its [seed ↗️](../agents/getting-started/seedphrase); we use this to load in an Agent often with `Identity.from_seed("some str as your seed", 0)` -Registration allows other Agents to find you, you can see this in `register_with_agentverse`. We specify a `readme` which is a xml string so that LLMs can read this content in a more structured manner. Very useful for search in more complex demos. +Registration allows other Agents to find you, you can see this in `register_with_agentverse`. We specify a `readme` which is an xml string so that LLMs can read this content in a more structured manner. Very useful for search in more complex demos. `/webhook` is where our Agent accepts an incoming message. They will receive this message when another Agents search for it and match. Within this Agent, we get the data with `data = request.json` and then we get some of the message objects, our Agent expects the payload to have `date of birth` and `gender` as keys. From 6142477e257371d1e6afda1c47ac41d92ade8729 Mon Sep 17 00:00:00 2001 From: "felix.bucsa" <72919584+FelixNicolaeBucsa@users.noreply.github.com> Date: Wed, 19 Feb 2025 14:01:54 +0000 Subject: [PATCH 2/2] Update pages/guides/fetchai-sdk/quickstart.mdx Co-authored-by: Joshua Croft <32483134+devjsc@users.noreply.github.com> --- pages/guides/fetchai-sdk/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/guides/fetchai-sdk/quickstart.mdx b/pages/guides/fetchai-sdk/quickstart.mdx index b75e1bda5..9d10f301f 100644 --- a/pages/guides/fetchai-sdk/quickstart.mdx +++ b/pages/guides/fetchai-sdk/quickstart.mdx @@ -157,7 +157,7 @@ if __name__ == "__main__": There's a lot to unpack there, but as this is a quickstart, let's just cover the essentials: -An Agent is identifiable by its [seed ↗️](../agents/getting-started/seedphrase); we use this to load in an Agent often with `Identity.from_seed("some str as your seed", 0)` +An Agent is identifiable by their [seed ↗️](../agents/getting-started/seedphrase); we use this to load in an Agent often with `Identity.from_seed("some str as your seed", 0)` Registration allows other Agents to find you, you can see this in `register_with_agentverse`. We specify a `readme` which is an xml string so that LLMs can read this content in a more structured manner. Very useful for search in more complex demos.