Skip to content

Commit c68ac28

Browse files
committed
docs: move Features section above examples for better structure
- Relocated Features section to appear after Quick Start but before detailed examples - Improves README flow by highlighting key features early - Maintains logical progression from installation -> features -> examples
1 parent 22dd5d0 commit c68ac28

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,19 @@ employee = employee_tool.call(id="employee-id")
3030
employee = employee_tool.execute({"id": "employee-id"})
3131
```
3232

33+
## Features
34+
35+
- Unified interface for multiple SaaS tools
36+
- AI-friendly tool descriptions and parameters
37+
- **Tool Calling**: Direct method calling with `tool.call()` for intuitive usage
38+
- **Glob Pattern Filtering**: Advanced tool filtering with patterns like `"hris_*"` and exclusions `"!hris_delete_*"`
39+
- **Meta Tools** (Beta): Dynamic tool discovery and execution based on natural language queries
40+
- Integration with popular AI frameworks:
41+
- OpenAI Functions
42+
- LangChain Tools
43+
- CrewAI Tools
44+
- LangGraph Tool Node
45+
3346
## Meta Tools (Beta)
3447

3548
Meta tools enable dynamic tool discovery and execution without hardcoding tool names:
@@ -111,19 +124,6 @@ crew = Crew(agents=[agent], tasks=[task])
111124
result = crew.kickoff()
112125
```
113126

114-
## Features
115-
116-
- Unified interface for multiple SaaS tools
117-
- AI-friendly tool descriptions and parameters
118-
- **Tool Calling**: Direct method calling with `tool.call()` for intuitive usage
119-
- **Glob Pattern Filtering**: Advanced tool filtering with patterns like `"hris_*"` and exclusions `"!hris_delete_*"`
120-
- **Meta Tools** (Beta): Dynamic tool discovery and execution based on natural language queries
121-
- Integration with popular AI frameworks:
122-
- OpenAI Functions
123-
- LangChain Tools
124-
- CrewAI Tools
125-
- LangGraph Tool Node
126-
127127
## Documentation
128128

129129
For more examples and documentation, visit:

0 commit comments

Comments
 (0)