Skip to content

Commit 4fdc161

Browse files
committed
chore: release v1.16.0
- Config validation accepts minimal RAG configs — `indexing` and per-source `chunk` now optional with defaults (#124) - Fixed Atlas distiller LLM client "Premature close" errors, by disabling keep-alive on the test/proxy client (#127)
1 parent 5a6e1cd commit 4fdc161

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @copilotkit/pathfinder
22

3+
## 1.16.0
4+
5+
### Minor Changes
6+
7+
- Config validation accepts minimal RAG configs — `indexing` and per-source `chunk` now optional with defaults (#124)
8+
- Fixed Atlas distiller LLM client "Premature close" errors, by disabling keep-alive on the test/proxy client (#127)
9+
310
## 1.15.4
411

512
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@copilotkit/pathfinder",
3-
"version": "1.15.4",
3+
"version": "1.16.0",
44
"description": "The knowledge server for AI agents — index docs, code, Notion, Slack, and Discord into searchable, agent-accessible knowledge via MCP. Supports OpenAI, Ollama, and local transformers.js embeddings.",
55
"type": "module",
66
"repository": {

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const program = new Command();
1111
program
1212
.name("pathfinder")
1313
.description("The knowledge server for AI agents")
14-
.version("1.15.4");
14+
.version("1.16.0");
1515

1616
program
1717
.command("init")

0 commit comments

Comments
 (0)