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

com.github.hakenadu.javalangchains.util.PromptConstants Maven / Gradle / Ivy

package com.github.hakenadu.javalangchains.util;

/**
 * Utility Class which holds constants for prompt placeholders
 */
public final class PromptConstants {

	/**
	 * placeholder for the question in qa context
	 */
	public static final String QUESTION = "question";

	/**
	 * placeholder for text content in qa context
	 */
	public static final String CONTENT = "content";

	/**
	 * placeholder for sources in qa context
	 */
	public static final String SOURCE = "source";

	private PromptConstants() {
		// not instantiated
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy