File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed
Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Test PocketFlow Agent Pipeline
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ test-pipeline :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout code
14+ uses : actions/checkout@v4
15+ - name : Set up Python
16+ uses : actions/setup-python@v5
17+ with :
18+ python-version : ' 3.11'
19+ - name : Install dependencies
20+ run : |
21+ python -m pip install --upgrade pip
22+ pip install -r requirements.txt
23+ - name : Run PocketFlow agent pipeline test
24+ run : |
25+ python src/test_pipeline.py
Original file line number Diff line number Diff line change 11import React , { useEffect , useState } from 'react' ;
22import { motion } from 'framer-motion' ;
3- import { Zap , Target , Brain } from 'lucide-react' ;
43
54const BACKEND_URL = import . meta. env . VITE_HEALTH_URL || 'https://crawlwise.onrender.com/health' ;
65
@@ -58,6 +57,12 @@ const Header: React.FC = () => {
5857 animate = { { opacity : 1 , x : 0 } }
5958 transition = { { duration : 0.6 , delay : 0.2 } }
6059 >
60+ { /* Powered by Alchemyst AI badge */ }
61+ < div className = "hidden md:flex items-center space-x-2 px-3 py-1.5 rounded-full bg-white/5 border border-white/10 text-xs text-gray-300 font-medium" >
62+ < span > Powered by</ span >
63+ < span className = "font-bold text-blue-400" > Alchemyst AI</ span >
64+ </ div >
65+ { /* Status Indicator */ }
6166 < div className = "flex items-center space-x-2 px-3 py-1.5 rounded-full bg-white/5 border border-white/10" >
6267 < div className = { `w-2 h-2 rounded-full ${ indicatorColor } ${ online === true ? 'animate-pulse' : '' } ` } />
6368 < span className = "text-xs text-gray-300 font-medium" > { indicatorText } </ span >
You can’t perform that action at this time.
0 commit comments