@sciagent/cli-win32-x64 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/sciagent +10 -0
- package/bin/sciagent.exe +12 -0
- package/package.json +1 -1
package/bin/sciagent
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
echo "SciAgent CLI - Platform not yet available"
|
|
3
|
+
echo ""
|
|
4
|
+
echo "This platform binary is not yet built."
|
|
5
|
+
echo "Please build from source:"
|
|
6
|
+
echo " 1. Clone: git clone https://gitee.com/garva/research-agent.git"
|
|
7
|
+
echo " 2. Build: python build_cli.py --cli"
|
|
8
|
+
echo ""
|
|
9
|
+
echo "Currently available: Linux x64 (npm install -g @sciagent/cli on Linux x64)"
|
|
10
|
+
exit 1
|
package/bin/sciagent.exe
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@echo off
|
|
2
|
+
echo SciAgent CLI - Windows Version
|
|
3
|
+
echo.
|
|
4
|
+
echo Windows binary is not yet available.
|
|
5
|
+
echo Please build from source on Windows:
|
|
6
|
+
echo 1. Clone the repository
|
|
7
|
+
echo 2. Run: python build_cli.py --cli
|
|
8
|
+
echo 3. Copy dist\sciagent.exe to this location
|
|
9
|
+
echo.
|
|
10
|
+
echo Or use WSL (Windows Subsystem for Linux):
|
|
11
|
+
echo wsl npm install -g @sciagent/cli
|
|
12
|
+
exit /b 1
|