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

dev.langchain4j.code.CodeExecutionEngine Maven / Gradle / Ivy

package dev.langchain4j.code;

/**
 * Interface for executing code.
 */
public interface CodeExecutionEngine {

    /**
     * Execute the given code.
     *
     * @param code The code to execute.
     * @return The result of the execution.
     */
    String execute(String code);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy