Uses of Class
org.ek9lang.assist.QuestionRegistry
Packages that use QuestionRegistry
-
Uses of QuestionRegistry in org.ek9lang.assist
Methods in org.ek9lang.assist that return QuestionRegistryModifier and TypeMethodDescriptionstatic QuestionRegistryQuestionRegistry.createDefault()Create a registry from all .ek9 QA resource files.Methods in org.ek9lang.assist with parameters of type QuestionRegistryModifier and TypeMethodDescriptionvoidTrainingDataDumper.dumpChatJsonl(QuestionRegistry registry, PrintStream out) Dump all Q&A pairs as chat-format JSONL (for models expecting conversation).voidTrainingDataDumper.dumpJsonl(QuestionRegistry registry, PrintStream out) Dump all Q&A pairs as instruction/response JSONL to the given output stream.QuestionMatcher.findBestMatches(String input, QuestionRegistry registry) Find the best matching questions using default max results (3).QuestionMatcher.findBestMatches(String input, QuestionRegistry registry, int maxResults) Find the best matching questions for the given input text.QuestionMatcher.findByCategory(String input, QuestionRegistry registry) Find a category whose name fuzzy-matches the input.QuestionMatcher.findScoredMatches(String input, QuestionRegistry registry, int maxResults) Find best matches with scores, so callers can distinguish best from also-relevant.