@sjcrh/proteinpaint-rust 2.167.0 → 2.170.0
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/Cargo.toml +8 -4
- package/package.json +1 -1
- package/src/aichatbot.rs +307 -310
- package/src/manhattan_plot.rs +31 -16
- package/src/query_classification.rs +152 -0
- package/src/summary_agent.rs +201 -0
- package/src/test_ai.rs +81 -58
package/Cargo.toml
CHANGED
|
@@ -123,10 +123,14 @@ path="src/cerno.rs"
|
|
|
123
123
|
name="readH5"
|
|
124
124
|
path="src/readH5.rs"
|
|
125
125
|
|
|
126
|
-
[[bin]]
|
|
127
|
-
name="aichatbot"
|
|
128
|
-
path="src/aichatbot.rs"
|
|
129
|
-
|
|
130
126
|
[[bin]]
|
|
131
127
|
name="manhattan_plot"
|
|
132
128
|
path="src/manhattan_plot.rs"
|
|
129
|
+
|
|
130
|
+
[[bin]]
|
|
131
|
+
name="query_classification"
|
|
132
|
+
path="src/query_classification.rs"
|
|
133
|
+
|
|
134
|
+
[[bin]]
|
|
135
|
+
name="summary_agent"
|
|
136
|
+
path="src/summary_agent.rs"
|
package/package.json
CHANGED