mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-16 08:25:14 +02:00
feat: wire claude-code agent runner backend
This commit is contained in:
parent
eb90d2f32c
commit
3de32c43a1
16 changed files with 229 additions and 21 deletions
|
|
@ -59,7 +59,7 @@ completed setup steps and resumes from the remaining work.
|
|||
KTX uses a Claude model for ingest agents that turn schemas, SQL, BI metadata,
|
||||
and documents into semantic-layer sources and wiki context.
|
||||
|
||||
Setup supports two LLM provider paths:
|
||||
Setup supports two hosted LLM provider paths:
|
||||
|
||||
| Provider | Use when | Credential model |
|
||||
|----------|----------|------------------|
|
||||
|
|
@ -78,6 +78,28 @@ Setup checks the selected model before saving. Anthropic API setup fetches live
|
|||
Claude model choices when possible and falls back to bundled defaults if model
|
||||
discovery is unavailable.
|
||||
|
||||
### Use a local Claude Code session for ingest agents
|
||||
|
||||
KTX can run ingest and memory-agent loops through your local Claude Code
|
||||
session. This affects only agentic loops; scan enrichment, page triage, and
|
||||
relationship proposals still use `llm.provider`.
|
||||
|
||||
```bash
|
||||
ktx setup --llm-backend claude-code --anthropic-model claude-sonnet-4-6
|
||||
```
|
||||
|
||||
The generated `ktx.yaml` uses:
|
||||
|
||||
```yaml
|
||||
llm:
|
||||
provider:
|
||||
backend: none
|
||||
agentRunner:
|
||||
backend: claude-code
|
||||
models:
|
||||
default: claude-sonnet-4-6
|
||||
```
|
||||
|
||||
## Step 3: Configure embeddings
|
||||
|
||||
KTX uses embeddings for semantic search over semantic-layer sources, wiki
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue