
How to Build Open Source Agentic AI Toolkit on AWS Graviton(Keep updating)
Learn how to leverage AWS Graviton's cost-efficient ARM architecture to build an open-source Agentic AI toolkit, optimizing performance and scalability for cloud-native AI workflows.
1
2
3
4
sudo dnf install python3-pip nodejs -y
pip3 install --upgrade pip
pip3 install uv
npm install -g pnpm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Clone the repository
git clone https://github.com/langmanus/langmanus.git
cd langmanus
Create and activate virtual environment through uv
uv python install 3.12
uv venv --python 3.12
source .venv/bin/activate
Install dependencies
uv sync
Configure environment
cp .env.example .env
Edit .env with your API keys
Run the project
uv run server.py
1
2
3
Clone the repository
git clone https://github.com/langmanus/langmanus-web.git
cd langmanus-web
.env
file in the project root and configure the following environment variables:NEXT_PUBLIC_API_URL
: The URL of the LangManus API server.
1
2
3
4
5
Install dependencies
pnpm install
Run the project in development mode
pnpm dev
Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.