File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ if [ ! -f ../.env ]; then
1515 cp ../.env.example ../.env
1616 echo " "
1717 echo " ⚠️ Please edit .env and set your API keys:"
18- echo " - MEMORY_LLM_API_KEY "
18+ echo " - MEMORA_API_LLM_API_KEY "
1919 echo " "
2020 echo " Then run this script again."
2121 exit 1
@@ -37,14 +37,14 @@ echo " ✅ PostgreSQL is ready"
3737
3838# Wait for API
3939echo " Waiting for API..."
40- until curl -f http://localhost:8080/ > /dev/null 2>&1 ; do
40+ until curl -f http://localhost:8080/api/v1/agents > /dev/null 2>&1 ; do
4141 sleep 2
4242done
4343echo " ✅ API is ready"
4444
4545# Wait for Control Plane
4646echo " Waiting for Control Plane..."
47- until curl -f http://localhost:3000/ > /dev/null 2>&1 ; do
47+ until curl -f http://localhost:3000 > /dev/null 2>&1 ; do
4848 sleep 2
4949done
5050echo " ✅ Control Plane is ready"
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ dependencies = [
2828 " tiktoken>=0.12.0" ,
2929 " httpx>=0.27.0" ,
3030 " fastmcp>=2.0.0" ,
31+ " python-dateutil>=2.8.0" ,
3132]
3233
3334[project .optional-dependencies ]
You can’t perform that action at this time.
0 commit comments