chem_nor 0.3.0
chem_nor: ^0.3.0 copied to clipboard
A Dart package to find relevant chemical compounds using AI and PubChem.
example/main.dart
import 'package:chem_nor/chem_nor.dart';
void main() async {
final finder = ChemNOR(genAiApiKey: 'APIkey');
dynamic properties = await finder.getCompoundProperties(248);
print(properties);
dynamic list = await finder.getSubstructureCids('CC');
print(list);
final smiles = await finder.getRelevantSmiles('carboxylic acid compounds');
print(smiles);
dynamic question = await finder.chemist('hello , please educate me about carboxymethyl(trimethyl)ammonium ');
print(question);
}