Uses of Class
dyntabs.ai.AssistantBuilder
Packages that use AssistantBuilder
-
Uses of AssistantBuilder in dyntabs.ai
Methods in dyntabs.ai that return AssistantBuilderModifier and TypeMethodDescriptionstatic <T> AssistantBuilder<T> Starts building an AI Assistant proxy for the given interface.AssistantBuilder.withApiKey(String apiKey) AssistantBuilder.withChatLanguageModel(dev.langchain4j.model.chat.ChatLanguageModel model) AssistantBuilder.withMemory(int maxMessages) AssistantBuilder.withRAG(DocumentSource... sources) Enables RAG from in-memory document sources (byte arrays).Enables RAG (document-powered AI) with the given document sources.Enables RAG with full control over retrieval parameters.AssistantBuilder.withRAG(List<DocumentSource> sources, int maxResults, double minScore) Enables RAG from in-memory document sources with tuning parameters.AssistantBuilder.withSystemMessage(String systemMessage) Adds tool objects whose public methods the AI can call.