// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package ai.vespa.llm; import ai.vespa.llm.completion.Completion; import ai.vespa.llm.completion.Prompt; import com.yahoo.api.annotations.Beta; import java.util.List; /** * Interface to language models. * * @author bratseth */ @Beta public interface LanguageModel { List complete(Prompt prompt); }