All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.langchain4j.runtime.devui.OpenWebUIJsonRPCService Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package io.quarkiverse.langchain4j.runtime.devui;

import jakarta.enterprise.context.control.ActivateRequestContext;

import org.eclipse.microprofile.config.ConfigProvider;

@ActivateRequestContext
public class OpenWebUIJsonRPCService {

    public String getConfigValue(String key) {
        try {
            return ConfigProvider.getConfig().getValue(key, String.class);
        } catch (Exception e) {
            return null;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy