chem_nor 0.3.2 copy "chem_nor: ^0.3.2" to clipboard
chem_nor: ^0.3.2 copied to clipboard

Dart package that finds relevant chemical compounds using AI(Gemini) and PubChem. Use it to level up your chemistry knowledge and chat with your Ai chemist!

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);
}
1
likes
0
points
254
downloads

Publisher

unverified uploader

Weekly Downloads

Dart package that finds relevant chemical compounds using AI(Gemini) and PubChem. Use it to level up your chemistry knowledge and chat with your Ai chemist!

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

http, intl

More

Packages that depend on chem_nor