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

Grammar & Clarity Fixes in Documentation #298

Merged
merged 2 commits into from
Feb 26, 2025
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
2 changes: 1 addition & 1 deletion examples/agent-kit-langgraph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This example demonstrates how to build an advanced Solana agent using LangGraph

- Multi-agent architecture using LangGraph's StateGraph
- Specialized agents for different tasks:
- General purpose agent for basic queries (with optional Tavily search integration)
- General-purpose agent for basic queries (with optional Tavily search integration)
- Transfer/Swap agent for transaction operations
- Read agent for blockchain data queries
- Manager agent for routing and orchestration
Expand Down
6 changes: 3 additions & 3 deletions guides/add_your_own_tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Extending the **Solana Agent Kit** with custom tools allows you to add specializ

1. Create a new tool file
2. Export the new tool
3. Add supporting functions in SolanaAgentKit
3. Add supporting functions to SolanaAgentKit
4. Implement the Langchain tool class
5. Export the Langchain tool
6. Export your protocol's langchain tools (if not already exported)
7. Define Action class for given tool
7. Define an Action class for given tool
8. Export Action
9. Use the custom tool

Expand Down Expand Up @@ -87,7 +87,7 @@ export * from "./tiplink";
export * from "./your_protocol"; // Add your protocol here if it's not already in the list
```

### 7. Define Action class for given tool
### 7. Define an Action class for given tool

> `src/actions/your_protocol/custom_action.ts`
```typescript:src/actions/your_protocol/custom_action.ts
Expand Down
Loading