chem_nor 0.2.2 copy "chem_nor: ^0.2.2" to clipboard
chem_nor: ^0.2.2 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: 'your-api-key');
  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);
}
1
likes
0
points
279
downloads

Publisher

unverified uploader

Weekly Downloads

A Dart package to find relevant chemical compounds using AI and PubChem.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

google_generative_ai, http, intl

More

Packages that depend on chem_nor