You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-*targets*: list of target compounds in SMILES format
28
33
-*parameters* (optional): additional configuration for your batch
29
-
scoring request. See [Batch Scoring API](https://github.com/molecule-one/api/blob/master/batch-scoring.md) for more information.
30
-
-*priority* (optional): priority of the batch request.
34
+
scoring request. See [Batch Scoring API](https://github.com/molecule-one/api/blob/master/api-v2.md) for more information.
35
+
-*detail_level* (optional): [detail level of the batch request](#batch-scoring-detail-level)
36
+
-*priority* (optional): [priority of the batch request](#batch-scoring-priorities)
37
+
-*invalid_target_strategy* (optional): if set to `InvalidTargetStrategy.PASS`, targets that cannot be canonized by our SMILES parser won't cause the whole batch request to be rejected. Defaults to `InvalidTargetStrategy.REJECT`.
31
38
-*starting_materials* (optional): list of available compounds in SMILES format
32
39
33
-
### Batch scoring priorities:
40
+
### Batch scoring detail level
41
+
Detail level determines how much information about each target synthesis you'll get. We define it as a `DetailLevel` enum with two variants:
42
+
-`DetailLevel.SCORE` (default) - useful when you're not interested in full synthesis json/UI preview, but only numerical values
43
+
-`DetailLevel.SYNTHESIS` - when you're also interested in reactions and compounds leading to the target product
44
+
#### Example:
45
+
```py
46
+
from m1wrapper import MoleculeOneWrapper, DetailLevel
0 commit comments