symmetry-cli 1.0.27 → 1.0.29
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/package.json +2 -2
- package/readme.md +8 -8
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "symmetry-cli",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.29",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/symmetry.js",
|
6
6
|
"bin": "dist/symmetry.js",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
"dependencies": {
|
25
25
|
"commander": "^12.1.0",
|
26
26
|
"js-yaml": "^4.1.0",
|
27
|
-
"symmetry-core": "^1.0.
|
27
|
+
"symmetry-core": "^1.0.29"
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
30
|
"@types/jest": "^29.5.12",
|
package/readme.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Use this repository to become an inference provider on the Symmetry network.
|
4
4
|
|
5
|
-
Symmetry is a
|
5
|
+
Symmetry is a distributed peer-to-peer network tool that allows users to share computational resources for AI inference. It enables users to connect directly and securely with each other, offering or seeking computational power for various AI tasks.
|
6
6
|
|
7
7
|
## Features
|
8
8
|
|
@@ -93,8 +93,8 @@ graph TB
|
|
93
93
|
end
|
94
94
|
|
95
95
|
subgraph "Clients"
|
96
|
-
C1[Client 1
|
97
|
-
C2[Client 2
|
96
|
+
C1[Client 1 Requests Model B]
|
97
|
+
C2[Client 2 Requests Model C]
|
98
98
|
end
|
99
99
|
|
100
100
|
P1 <--> |"1. Connect & Auth & Register Model"| S
|
@@ -104,11 +104,11 @@ graph TB
|
|
104
104
|
C1 -- "2. Connect" --> S
|
105
105
|
C2 -- "2. Connect" --> S
|
106
106
|
|
107
|
-
S -- "3. Assign Provider
|
108
|
-
S -- "3. Assign Provider
|
107
|
+
S -- "3. Assign Provider based on Model" --> C1
|
108
|
+
S -- "3. Assign Provider based on Model" --> C2
|
109
109
|
|
110
|
-
C1 <--> |"4. Inference
|
111
|
-
C2 <--> |"4. Inference
|
110
|
+
C1 <--> |"4. Inference Request/Response"| P2
|
111
|
+
C2 <--> |"4. Inference Request/Response"| P3
|
112
112
|
```
|
113
113
|
|
114
114
|
## Development
|
@@ -142,7 +142,7 @@ Contributions are welcome! Please submit your pull requests to the [GitHub repos
|
|
142
142
|
|
143
143
|
## License
|
144
144
|
|
145
|
-
This project is licensed under the [
|
145
|
+
This project is licensed under the [Apache 2.0 Licence](https://github.com/twinnydotdev/symmetry/blob/master/LICENCE).
|
146
146
|
|
147
147
|
## Support
|
148
148
|
|