Add THINK KB keyword to documentation overview and reference
All checks were successful
GBCI / build (push) Successful in 20s

- Add THINK KB to keywords.md overview table
- Add THINK KB to keyword-reference-complete.md
- Include THINK KB in knowledge base section with syntax
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-03-16 08:43:43 -03:00
parent ea5e92eb1f
commit ae09de3dea
2 changed files with 3 additions and 0 deletions

View file

@ -22,6 +22,7 @@ This document provides a comprehensive reference of all BASIC keywords in Genera
| `SET CONTEXT` | ✅ Implemented | AI | Add context for LLM | | `SET CONTEXT` | ✅ Implemented | AI | Add context for LLM |
| `SET USER` | ✅ Implemented | Session | Set user context | | `SET USER` | ✅ Implemented | Session | Set user context |
| `USE KB` | ✅ Implemented | Knowledge | Load knowledge base | | `USE KB` | ✅ Implemented | Knowledge | Load knowledge base |
| `THINK KB` | ✅ Implemented | Knowledge | Explicit KB search with structured results |
| `CLEAR KB` | ✅ Implemented | Knowledge | Unload knowledge base | | `CLEAR KB` | ✅ Implemented | Knowledge | Unload knowledge base |
| `USE WEBSITE` | ✅ Implemented | Knowledge | Associate website | | `USE WEBSITE` | ✅ Implemented | Knowledge | Associate website |
| `ADD TOOL` | ✅ Implemented | Tools | Register tool | | `ADD TOOL` | ✅ Implemented | Tools | Register tool |

View file

@ -134,6 +134,7 @@ See [Script Execution Flow](./script-execution-flow.md) for complete details.
| `USER FACTS` | Memory | Get all stored user facts | | `USER FACTS` | Memory | Get all stored user facts |
| `UPLOAD` | Files | Upload file to storage | | `UPLOAD` | Files | Upload file to storage |
| `USE KB` | Knowledge | Load knowledge base | | `USE KB` | Knowledge | Load knowledge base |
| `THINK KB` | Knowledge | Explicit KB search with structured results |
| `USE TOOL` | Tools | Register tool definition | | `USE TOOL` | Tools | Register tool definition |
| `USE WEBSITE` | Knowledge | Associate website with session | | `USE WEBSITE` | Knowledge | Associate website with session |
| `WAIT` | Control | Pause execution | | `WAIT` | Control | Pause execution |
@ -203,6 +204,7 @@ See [Script Execution Flow](./script-execution-flow.md) for complete details.
| Keyword | Syntax | Description | | Keyword | Syntax | Description |
|---------|--------|-------------| |---------|--------|-------------|
| USE KB | `USE KB "kbname"` | Load knowledge base | | USE KB | `USE KB "kbname"` | Load knowledge base |
| THINK KB | `result = THINK KB "query"` | Explicit KB search with structured results |
| CLEAR KB | `CLEAR KB` or `CLEAR KB "kbname"` | Unload knowledge base | | CLEAR KB | `CLEAR KB` or `CLEAR KB "kbname"` | Unload knowledge base |
| USE WEBSITE | `USE WEBSITE "url"` | Associate website with session | | USE WEBSITE | `USE WEBSITE "url"` | Associate website with session |
| FIND | `result = FIND "file", "filter"` | Search in files or KB | | FIND | `result = FIND "file", "filter"` | Search in files or KB |