Overview
Connect skills with Upsonic’sKnowledgeBase to enable semantic search across all skill reference documents. Pass the KnowledgeBase instance via context=[kb] on the Task so the agent can query reference documents at runtime.
Usage
Using KnowledgeBase as a Tool
You can also pass theKnowledgeBase via tools=[kb] on the Task. This registers the KB as a searchable tool that the agent can actively query during execution:
How It Works
context=[kb]— The KB content is injected into the task context before execution. The agent receives it as background information.tools=[kb]— The KB is registered as a callable tool. The agent can actively search it during execution to find relevant documents on demand.

