Skip to content
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

chore: updating docs with the latest twitter actions #48

Merged
Merged
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
5 changes: 4 additions & 1 deletion twitter-langchain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ for tool in tools:

The toolkit provides the following tools:

1. **post_tweet** - Post tweet to Twitter
1. **account_details** - Get the authenticated account details
2. **account_mentions** - Get mentions for the account
3. **post_tweet** - Post a tweet to the account
3. **post_tweet_reply** - Post a reply to a tweet on Twitter

### Using with an Agent

Expand Down
2 changes: 2 additions & 0 deletions twitter-langchain/twitter_langchain/twitter_toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ class TwitterToolkit(BaseToolkit):
.. code-block:: none

account_details
account_mentions
post_tweet
post_tweet_reply

Use within an agent:
.. code-block:: python
Expand Down
Loading