Skip to content

fix: typos in documentation files #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/virtuals_sdk/game/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/virtuals_sdk/twitter_agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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)
```
```