Natural Language Agreements
Go to file
ngoc 98eeb8b38b
Update readme
2025-12-10 14:08:43 +07:00
clients MVP 2025-12-09 10:06:09 +07:00
tests MVP 2025-12-09 10:06:09 +07:00
.env.example MVP 2025-12-09 10:06:09 +07:00
.gitignore MVP 2025-12-09 10:06:09 +07:00
README.md Update readme 2025-12-10 14:08:43 +07:00
bun.lock Update readme 2025-12-10 14:08:43 +07:00
index.ts MVP 2025-12-09 10:06:09 +07:00
package.json Update readme 2025-12-10 14:08:43 +07:00
tsconfig.json MVP 2025-12-09 10:06:09 +07:00

README.md

natural-language-agreements

Prerequisites

This project depends on the alkahest repository, which must be cloned in the same parent directory.

Setup Instructions

  1. Clone both repositories in the same parent directory:
# Navigate to your projects directory
cd ~/Desktop  # or your preferred location

# Clone the alkahest repository
git clone https://github.com/arkhai-io/alkahest.git

# Clone this repository
git clone https://github.com/arkhai-io/natural-language-agreements.git

# Your directory structure should look like:
# parent-directory/
# ├── alkahest/
# │   └── sdks/
# │       └── ts/
# └── natural-language-agreements/
  1. Install alkahest dependencies:
cd alkahest
bun install
cd ..
  1. Install this project's dependencies:
cd natural-language-agreements
bun install

Usage

To run:

bun run index.ts

Development

This project was created using bun init in bun v1.2.20. Bun is a fast all-in-one JavaScript runtime.