Interface IPromptExecutionResolvedFiles
public interface IPromptExecutionResolvedFiles
Represents the result of resolving a files configuration into actual files, see
IPromptExecutionResolveFilesBuilder.build().- Since:
- 8.5.0
-
Method Summary
Modifier and TypeMethodDescriptionGets a map with the resolved dynamic files.Gets the list of resolved static files.
-
Method Details
-
dynamicFiles
Map<String, List<IPromptBinaryData>> dynamicFiles()Gets a map with the resolved dynamic files. The map key is thekeyof thefile parameter, and the map value is the list of resolved files for that key.If a
key prefixwas set, that prefix is included in the map keys.- Returns:
- The resolved dynamic files.
-
staticFiles
List<IPromptBinaryData> staticFiles()Gets the list of resolved static files.- Returns:
- The resolved static files.
-