chem_nor 0.1.3
chem_nor: ^0.1.3 copied to clipboard
A Dart package to find relevant chemical compounds using AI and PubChem.
ChemNOR #
A Dart package that finds relevant chemical compounds using AI (Gemini) and PubChem.
Installation #
dependencies: chem_nor: ^0.1.3
usage #
import 'package:chem_nor/chem_nor.dart';
void main() async {
final finder = ChemNOR(genAiApiKey: 'your-api-key');
final results = await finder.findCompounds('drug formulation');
print(results);
}