Add THINK KB keyword to documentation overview and reference
All checks were successful
GBCI / build (push) Successful in 20s
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:
parent
ea5e92eb1f
commit
ae09de3dea
2 changed files with 3 additions and 0 deletions
|
|
@ -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 USER` | ✅ Implemented | Session | Set user context |
|
||||
| `USE KB` | ✅ Implemented | Knowledge | Load knowledge base |
|
||||
| `THINK KB` | ✅ Implemented | Knowledge | Explicit KB search with structured results |
|
||||
| `CLEAR KB` | ✅ Implemented | Knowledge | Unload knowledge base |
|
||||
| `USE WEBSITE` | ✅ Implemented | Knowledge | Associate website |
|
||||
| `ADD TOOL` | ✅ Implemented | Tools | Register tool |
|
||||
|
|
|
|||
|
|
@ -134,6 +134,7 @@ See [Script Execution Flow](./script-execution-flow.md) for complete details.
|
|||
| `USER FACTS` | Memory | Get all stored user facts |
|
||||
| `UPLOAD` | Files | Upload file to storage |
|
||||
| `USE KB` | Knowledge | Load knowledge base |
|
||||
| `THINK KB` | Knowledge | Explicit KB search with structured results |
|
||||
| `USE TOOL` | Tools | Register tool definition |
|
||||
| `USE WEBSITE` | Knowledge | Associate website with session |
|
||||
| `WAIT` | Control | Pause execution |
|
||||
|
|
@ -203,6 +204,7 @@ See [Script Execution Flow](./script-execution-flow.md) for complete details.
|
|||
| Keyword | Syntax | Description |
|
||||
|---------|--------|-------------|
|
||||
| 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 |
|
||||
| USE WEBSITE | `USE WEBSITE "url"` | Associate website with session |
|
||||
| FIND | `result = FIND "file", "filter"` | Search in files or KB |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue