From 6804822364af35742571833d1f5cea349211fb34 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Thu, 16 Jan 2025 17:34:38 +0200 Subject: [PATCH 1/2] Update README.md --- src/virtuals_sdk/game/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virtuals_sdk/game/README.md b/src/virtuals_sdk/game/README.md index 86973da..3394494 100644 --- a/src/virtuals_sdk/game/README.md +++ b/src/virtuals_sdk/game/README.md @@ -4,7 +4,7 @@ This library enables the creation of AI agents, in which actions are defined by the creator/developer. These agents can be used: - Worker Mode: to autonomously execute tasks through interaction with the agent. User interaction and tasks is required for the agent to execute tasks. For example, "Bring me some fruits and then go sit on the chair". -- Agent Mode: to autonomously function in an open-ended manner by just providing a general goal. The agent independently and continously decides tasks for itself in an open-ended manner, and attempts to complete them. +- Agent Mode: to autonomously function in an open-ended manner by just providing a general goal. The agent independently and continuously decides tasks for itself in an open-ended manner, and attempts to complete them. ## Core Features From 4e02bf51c7bb7d9360dfe337f610a4e45dd1476d Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Thu, 16 Jan 2025 17:36:52 +0200 Subject: [PATCH 2/2] Update README.md --- src/virtuals_sdk/twitter_agent/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/virtuals_sdk/twitter_agent/README.md b/src/virtuals_sdk/twitter_agent/README.md index 6c0d096..449f7d2 100644 --- a/src/virtuals_sdk/twitter_agent/README.md +++ b/src/virtuals_sdk/twitter_agent/README.md @@ -168,7 +168,7 @@ With this SDK and function structure, importing and sharing functions is also po ```python from virtuals_sdk.functions.telegram import TelegramClient -# define your token so that it can attach it to create the correspodning functions +# define your token so that it can attach it to create the corresponding functions tg_client = TelegramClient(bot_token="xxx") print(tg_client.available_functions) @@ -186,4 +186,4 @@ pin_message_fn("xxxxxxxx", "xx", "True") agent.add_custom_function(reply_message_fn) agent.add_custom_function(create_poll_fn) agent.add_custom_function(pin_message_fn) -``` \ No newline at end of file +```