@m6d/cortex-server 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/factory.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m6d/cortex-server",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Reusable AI agent chat server library for Hono + Bun",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/factory.ts CHANGED
@@ -105,7 +105,7 @@ export function createCortex(config: CortexConfig): CortexInstance {
105
105
 
106
106
  app.route("/agents/:agentId", agentApp);
107
107
 
108
- const port = config.port ?? 3000;
108
+ const port = config.port ?? 3331;
109
109
 
110
110
  return {
111
111
  app,