@synsci/openscience 2.0.55-test.33295801560 → 2.0.56
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/README.md +2 -3
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @synsci/openscience
|
|
2
2
|
|
|
3
|
-
OpenScience is a model-agnostic, open-source AI research agent for scientific and ML engineering work. It runs a workspace in your browser where the agent plans tasks, writes and runs code, drives experiments, queries scientific databases, and writes up results. Bring your own API key, use eligible ChatGPT/Codex access, or
|
|
3
|
+
OpenScience is a model-agnostic, open-source AI research agent for scientific and ML engineering work. It runs a workspace in your browser where the agent plans tasks, writes and runs code, drives experiments, queries scientific databases, and writes up results. Bring your own API key, use eligible ChatGPT/Codex access, or run a local model.
|
|
4
4
|
|
|
5
5
|
Part of the [OpenScience](https://github.com/synthetic-sciences/OpenScience) repository.
|
|
6
6
|
|
|
@@ -20,11 +20,10 @@ On Linux, the bundled runtime requires kernel 5.1 or newer. Glibc binaries requi
|
|
|
20
20
|
openscience # open the workspace in your browser
|
|
21
21
|
openscience ~/code/project # open it in a specific directory
|
|
22
22
|
openscience connect # connect a ChatGPT / Codex subscription locally
|
|
23
|
-
openscience login # connect Synthetic Sciences (optional; BYOK works without an account)
|
|
24
23
|
openscience run "..." # run a one-shot task
|
|
25
24
|
```
|
|
26
25
|
|
|
27
|
-
Configuration lives in `~/.config/openscience/openscience.json`. Provider keys can be set in the workspace
|
|
26
|
+
Configuration lives in `~/.config/openscience/openscience.json`. Provider keys can be set in the workspace and remain on this device. Default, learned, installed, and project skills are local.
|
|
28
27
|
|
|
29
28
|
## Docs
|
|
30
29
|
|
package/package.json
CHANGED
|
@@ -7,22 +7,22 @@
|
|
|
7
7
|
"preinstall": "node ./preinstall.mjs || exit 0",
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs || exit 0"
|
|
9
9
|
},
|
|
10
|
-
"version": "2.0.
|
|
10
|
+
"version": "2.0.56",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "git+https://github.com/synthetic-sciences/openscience.git"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@synsci/openscience-windows-x64": "2.0.
|
|
17
|
-
"@synsci/openscience-darwin-x64": "2.0.
|
|
18
|
-
"@synsci/openscience-darwin-x64-baseline": "2.0.
|
|
19
|
-
"@synsci/openscience-linux-x64-baseline": "2.0.
|
|
20
|
-
"@synsci/openscience-linux-x64-musl": "2.0.
|
|
21
|
-
"@synsci/openscience-linux-arm64-musl": "2.0.
|
|
22
|
-
"@synsci/openscience-windows-x64-baseline": "2.0.
|
|
23
|
-
"@synsci/openscience-linux-x64-baseline-musl": "2.0.
|
|
24
|
-
"@synsci/openscience-linux-arm64": "2.0.
|
|
25
|
-
"@synsci/openscience-darwin-arm64": "2.0.
|
|
26
|
-
"@synsci/openscience-linux-x64": "2.0.
|
|
16
|
+
"@synsci/openscience-windows-x64": "2.0.56",
|
|
17
|
+
"@synsci/openscience-darwin-x64": "2.0.56",
|
|
18
|
+
"@synsci/openscience-darwin-x64-baseline": "2.0.56",
|
|
19
|
+
"@synsci/openscience-linux-x64-baseline": "2.0.56",
|
|
20
|
+
"@synsci/openscience-linux-x64-musl": "2.0.56",
|
|
21
|
+
"@synsci/openscience-linux-arm64-musl": "2.0.56",
|
|
22
|
+
"@synsci/openscience-windows-x64-baseline": "2.0.56",
|
|
23
|
+
"@synsci/openscience-linux-x64-baseline-musl": "2.0.56",
|
|
24
|
+
"@synsci/openscience-linux-arm64": "2.0.56",
|
|
25
|
+
"@synsci/openscience-darwin-arm64": "2.0.56",
|
|
26
|
+
"@synsci/openscience-linux-x64": "2.0.56"
|
|
27
27
|
}
|
|
28
28
|
}
|