Skip to content
Merged

Dev #56

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cortex-mem-service/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct Cli {
data_dir: String,

/// Server host
#[arg(long, default_value = "127.0.0.1")]
#[arg(long, default_value = "localhost")]
host: String,

/// Server port
Expand Down
1 change: 1 addition & 0 deletions examples/@memclaw/bin-darwin-arm64/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin/* filter=lfs diff=lfs merge=lfs -text
5 changes: 5 additions & 0 deletions examples/@memclaw/bin-darwin-arm64/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Dependencies
node_modules/

# Build artifacts
*.tsbuildinfo
22 changes: 22 additions & 0 deletions examples/@memclaw/bin-darwin-arm64/bin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# MemClaw Binaries for macOS Apple Silicon

Place the following binaries in this directory:

- `qdrant` - Qdrant vector database
- `cortex-mem-service` - Cortex Memory HTTP service
- `cortex-mem-cli` - Cortex Memory CLI tool

## Build from source

```bash
# In cortex-mem project root
cargo build --release --target aarch64-apple-darwin

# Copy binaries
cp target/aarch64-apple-darwin/release/cortex-mem-service bin/
cp target/aarch64-apple-darwin/release/cortex-mem-cli bin/
```

## Download Qdrant

Download from: https://github.com/qdrant/qdrant/releases
3 changes: 3 additions & 0 deletions examples/@memclaw/bin-darwin-arm64/bin/cortex-mem-cli
Git LFS file not shown
3 changes: 3 additions & 0 deletions examples/@memclaw/bin-darwin-arm64/bin/cortex-mem-service
Git LFS file not shown
3 changes: 3 additions & 0 deletions examples/@memclaw/bin-darwin-arm64/bin/qdrant
Git LFS file not shown
21 changes: 21 additions & 0 deletions examples/@memclaw/bin-darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "@memclaw/bin-darwin-arm64",
"version": "0.1.0",
"description": "MemClaw binaries for macOS Apple Silicon",
"os": [
"darwin"
],
"cpu": [
"arm64"
],
"files": [
"bin/"
],
"author": "Sopaco",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sopaco/cortex-mem.git",
"directory": "examples/@memclaw/bin-darwin-arm64"
}
}
1 change: 1 addition & 0 deletions examples/@memclaw/bin-win-x64/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.exe filter=lfs diff=lfs merge=lfs -text
5 changes: 5 additions & 0 deletions examples/@memclaw/bin-win-x64/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Dependencies
node_modules/

# Build artifacts
*.tsbuildinfo
22 changes: 22 additions & 0 deletions examples/@memclaw/bin-win-x64/bin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# MemClaw Binaries for Windows x64

Place the following binaries in this directory:

- `qdrant.exe` - Qdrant vector database
- `cortex-mem-service.exe` - Cortex Memory HTTP service
- `cortex-mem-cli.exe` - Cortex Memory CLI tool

## Build from source

```powershell
# In cortex-mem project root
cargo build --release --target x86_64-pc-windows-msvc

# Copy binaries
copy target\x86_64-pc-windows-msvc\release\cortex-mem-service.exe bin\
copy target\x86_64-pc-windows-msvc\release\cortex-mem-cli.exe bin\
```

## Download Qdrant

Download from: https://github.com/qdrant/qdrant/releases
3 changes: 3 additions & 0 deletions examples/@memclaw/bin-win-x64/bin/cortex-mem-cli.exe
Git LFS file not shown
3 changes: 3 additions & 0 deletions examples/@memclaw/bin-win-x64/bin/cortex-mem-service.exe
Git LFS file not shown
3 changes: 3 additions & 0 deletions examples/@memclaw/bin-win-x64/bin/qdrant.exe
Git LFS file not shown
21 changes: 21 additions & 0 deletions examples/@memclaw/bin-win-x64/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "@memclaw/bin-win-x64",
"version": "0.1.0",
"description": "MemClaw binaries for Windows x64",
"os": [
"win32"
],
"cpu": [
"x64"
],
"files": [
"bin/"
],
"author": "Sopaco",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sopaco/cortex-mem.git",
"directory": "examples/@memclaw/bin-win-x64"
}
}
1 change: 0 additions & 1 deletion examples/cortex-mem-openclaw/.gitignore

This file was deleted.

190 changes: 0 additions & 190 deletions examples/cortex-mem-openclaw/README.md

This file was deleted.

Loading
Loading