Uses of Class
de.seggebaeing.sqlanalyzer.logic.bdo.LLM
Packages that use LLM
Package
Description
-
Uses of LLM in de.seggebaeing.sqlanalyzer.logic.bdo
Methods in de.seggebaeing.sqlanalyzer.logic.bdo that return LLMModifier and TypeMethodDescriptionGeneratedQuery.getGenerator()
Gets the value of thegenerator
property.Methods in de.seggebaeing.sqlanalyzer.logic.bdo that return types with arguments of type LLMModifier and TypeMethodDescriptionjavafx.beans.property.ObjectProperty
<LLM> GeneratedQuery.generatorProperty()
Methods in de.seggebaeing.sqlanalyzer.logic.bdo with parameters of type LLMModifier and TypeMethodDescriptionvoid
GeneratedQuery.setGenerator
(LLM generator) Sets the value of thegenerator
property.Constructors in de.seggebaeing.sqlanalyzer.logic.bdo with parameters of type LLMModifierConstructorDescriptionGeneratedQuery
(String sql, LLM generator, Prompt prompt) Creates a newGeneratedQuery
with the given values.GeneratedQuery
(String sql, LLM generator, Prompt prompt, Long version) Creates a newGeneratedQuery
with the given values and an optional version. -
Uses of LLM in de.seggebaeing.sqlanalyzer.logic.domainmapper
Methods in de.seggebaeing.sqlanalyzer.logic.domainmapper that return LLMModifier and TypeMethodDescriptionMethods in de.seggebaeing.sqlanalyzer.logic.domainmapper with parameters of type LLM -
Uses of LLM in de.seggebaeing.sqlanalyzer.logic.promptable.util
Methods in de.seggebaeing.sqlanalyzer.logic.promptable.util with parameters of type LLMModifier and TypeMethodDescriptionvoid
PromptAuthorizer.registerInstant
(LLM llm, Instant waitUntil) Registers or extends the rate-limit deadline for the givenLLM
.void
PromptAuthorizer.waitUntilAuthorized
(LLM llm) Blocks the current thread until prompting the givenLLM
is permitted. -
Uses of LLM in de.seggebaeing.sqlanalyzer.logic.service
Methods in de.seggebaeing.sqlanalyzer.logic.service that return types with arguments of type LLMModifier and TypeMethodDescriptionLLMService.getAll()
Retrieves all persisted LLMs and maps them to business objects.Methods in de.seggebaeing.sqlanalyzer.logic.service with parameters of type LLMModifier and TypeMethodDescriptionvoid
Deletes the given LLM by mapping it to its DTO and delegating to the DAO.LLMService.getDependants
(LLM object) Returns business objects that directly reference the given LLM.void
LLMService.saveOrUpdate
(LLM bdo) Saves a new LLM or updates an existing one by mapping it to its DTO and delegating to the DAO. -
Uses of LLM in de.seggebaeing.sqlanalyzer.logic.util.eval.impl
Constructors in de.seggebaeing.sqlanalyzer.logic.util.eval.impl with parameters of type LLMModifierConstructorDescriptionLLMComparator
(LLM llm, double temperature) Creates an LLM-backed statement comparator with the given configuration. -
Uses of LLM in de.seggebaeing.sqlanalyzer.logic.util.thread
Constructor parameters in de.seggebaeing.sqlanalyzer.logic.util.thread with type arguments of type LLMModifierConstructorDescriptionGenerationThread
(int poolSize, int repetitionCount, Collection<LLM> llms, Collection<Prompt> prompts, Runnable signalDone, Consumer<LLM> startedProgress, Consumer<LLM> finishedProgress, BiConsumer<LLM, Instant> rateLimitReporter) Constructs a generation worker thread.GenerationThread
(int poolSize, int repetitionCount, Collection<LLM> llms, Collection<Prompt> prompts, Runnable signalDone, Consumer<LLM> startedProgress, Consumer<LLM> finishedProgress, BiConsumer<LLM, Instant> rateLimitReporter) Constructs a generation worker thread.GenerationThread
(int poolSize, int repetitionCount, Collection<LLM> llms, Collection<Prompt> prompts, Runnable signalDone, Consumer<LLM> startedProgress, Consumer<LLM> finishedProgress, BiConsumer<LLM, Instant> rateLimitReporter) Constructs a generation worker thread. -
Uses of LLM in de.seggebaeing.sqlanalyzer.presentation.controller.details
Methods in de.seggebaeing.sqlanalyzer.presentation.controller.details that return types with arguments of type LLMModifier and TypeMethodDescriptionprotected BDOService
<LLM> LLMDetailsController.getService()
Returns the service used to load and persist LLM objects.Constructors in de.seggebaeing.sqlanalyzer.presentation.controller.details with parameters of type LLMModifierConstructorDescriptionLLMDetailsController
(LLM object) Creates a details controller bound to the given LLM instance. -
Uses of LLM in de.seggebaeing.sqlanalyzer.presentation.controller.overview
Methods in de.seggebaeing.sqlanalyzer.presentation.controller.overview that return types with arguments of type LLMModifier and TypeMethodDescriptionprotected BDOService
<LLM> LLMOverviewController.getService()
Returns the service used to load and persist LLM objects.Constructor parameters in de.seggebaeing.sqlanalyzer.presentation.controller.overview with type arguments of type LLMModifierConstructorDescriptionLLMOverviewController
(Predicate<LLM> filter) Creates an overview with the given external filter applied initially.