@isdk/ai-tool 0.5.2 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (331) hide show
  1. package/dist/funcs.js +1 -1
  2. package/dist/index.js +1 -1
  3. package/docs/README.md +250 -0
  4. package/docs/_media/CONTRIBUTING.md +18 -0
  5. package/docs/_media/LICENSE-MIT +22 -0
  6. package/docs/classes/AbortError.md +366 -0
  7. package/docs/classes/AlreadyExistsError.md +346 -0
  8. package/docs/classes/BaseError.md +359 -0
  9. package/docs/classes/BinarySemaphore.md +418 -0
  10. package/docs/classes/CancelableAbility.md +467 -0
  11. package/docs/classes/ClientTools.md +2715 -0
  12. package/docs/classes/CommonError.md +377 -0
  13. package/docs/classes/ConfigFile.md +353 -0
  14. package/docs/classes/EnvPromptTemplate.md +1158 -0
  15. package/docs/classes/EventClient.md +3149 -0
  16. package/docs/classes/EventEmitter.md +299 -0
  17. package/docs/classes/EventServer.md +3175 -0
  18. package/docs/classes/EventToolFunc.md +2557 -0
  19. package/docs/classes/FStringPromptTemplate.md +1158 -0
  20. package/docs/classes/FewShotPromptTemplate.md +1180 -0
  21. package/docs/classes/GolangPromptTemplate.md +1158 -0
  22. package/docs/classes/HFEnvironment.md +184 -0
  23. package/docs/classes/HFInterpreter.md +77 -0
  24. package/docs/classes/HFTemplate.md +67 -0
  25. package/docs/classes/HfPromptTemplate.md +1158 -0
  26. package/docs/classes/IntSet.md +216 -0
  27. package/docs/classes/LRUCache.md +601 -0
  28. package/docs/classes/NotFoundError.md +346 -0
  29. package/docs/classes/NotImplementationError.md +346 -0
  30. package/docs/classes/PromptExampleSelector.md +195 -0
  31. package/docs/classes/PromptTemplate.md +1088 -0
  32. package/docs/classes/ReadableStreamError.md +366 -0
  33. package/docs/classes/ResClientTools.md +2431 -0
  34. package/docs/classes/ResServerTools.md +2407 -0
  35. package/docs/classes/SSEChannel.md +270 -0
  36. package/docs/classes/Semaphore.md +538 -0
  37. package/docs/classes/ServerTools.md +2623 -0
  38. package/docs/classes/SignalGate.md +182 -0
  39. package/docs/classes/TaskAbortController.md +131 -0
  40. package/docs/classes/ToolFunc.md +2177 -0
  41. package/docs/classes/YamlTypeBaseObject.md +31 -0
  42. package/docs/enumerations/AsyncFeatureBits.md +33 -0
  43. package/docs/enumerations/AsyncFeatures.md +33 -0
  44. package/docs/enumerations/ErrorCode.md +177 -0
  45. package/docs/enumerations/HashAlgorithm.md +97 -0
  46. package/docs/functions/AIArgProcessor.md +33 -0
  47. package/docs/functions/AIStream.md +52 -0
  48. package/docs/functions/ChoiceArgProcessor.md +33 -0
  49. package/docs/functions/ObjectArgsToArgsInfo.md +29 -0
  50. package/docs/functions/RateLimit.md +37 -0
  51. package/docs/functions/TemplateArgProcessor.md +33 -0
  52. package/docs/functions/assignDirs.md +33 -0
  53. package/docs/functions/backendEventable.md +29 -0
  54. package/docs/functions/beforeShutdown.md +29 -0
  55. package/docs/functions/canonicalize.md +21 -0
  56. package/docs/functions/completeSentences.md +25 -0
  57. package/docs/functions/concatText.md +25 -0
  58. package/docs/functions/countLLMTokens.md +25 -0
  59. package/docs/functions/countRegexMatches.md +35 -0
  60. package/docs/functions/createAbilityInjector.md +119 -0
  61. package/docs/functions/createCallbacksTransformer.md +49 -0
  62. package/docs/functions/createEmptyReadableStream.md +21 -0
  63. package/docs/functions/createEndWithRepetitionDetector.md +31 -0
  64. package/docs/functions/createError.md +39 -0
  65. package/docs/functions/createEventStreamTransformer.md +33 -0
  66. package/docs/functions/createHfValueFunc.md +31 -0
  67. package/docs/functions/createLRUCache.md +25 -0
  68. package/docs/functions/createYamlObjectTag.md +25 -0
  69. package/docs/functions/dateToText.md +25 -0
  70. package/docs/functions/decodeCharset.md +25 -0
  71. package/docs/functions/detectCharset.md +25 -0
  72. package/docs/functions/encodeLLMTokens.md +25 -0
  73. package/docs/functions/ensureQuoted.md +25 -0
  74. package/docs/functions/eventable.md +82 -0
  75. package/docs/functions/expandConfig.md +25 -0
  76. package/docs/functions/expandEnv.md +40 -0
  77. package/docs/functions/expandObjEnv.md +58 -0
  78. package/docs/functions/expandPath.md +25 -0
  79. package/docs/functions/extNameLevel.md +43 -0
  80. package/docs/functions/fileIsExists.md +34 -0
  81. package/docs/functions/filenameReservedRegex.md +20 -0
  82. package/docs/functions/filterValidFnScope.md +21 -0
  83. package/docs/functions/findIndexNonEmptyFrom.md +25 -0
  84. package/docs/functions/findPort.md +25 -0
  85. package/docs/functions/formatISO.md +69 -0
  86. package/docs/functions/formatTextWithSpace.md +63 -0
  87. package/docs/functions/getAllEnumKeys.md +31 -0
  88. package/docs/functions/getConfigFileNames.md +25 -0
  89. package/docs/functions/getConfigs.md +25 -0
  90. package/docs/functions/getEnvVairables.md +21 -0
  91. package/docs/functions/getFileMetaInfo.md +21 -0
  92. package/docs/functions/getHashAlgoBySize.md +21 -0
  93. package/docs/functions/getKeysPath.md +38 -0
  94. package/docs/functions/getLLMTokenizer.md +21 -0
  95. package/docs/functions/getMultiLevelExtname.md +33 -0
  96. package/docs/functions/getPackageDir.md +39 -0
  97. package/docs/functions/getRealFilepath.md +34 -0
  98. package/docs/functions/getResponseErrorReadableStream.md +21 -0
  99. package/docs/functions/getXDGConfigs.md +37 -0
  100. package/docs/functions/hasDirectoryIn.md +40 -0
  101. package/docs/functions/hash.md +25 -0
  102. package/docs/functions/hashFile.md +25 -0
  103. package/docs/functions/hashStream.md +25 -0
  104. package/docs/functions/hfParse.md +24 -0
  105. package/docs/functions/hfTokenize.md +27 -0
  106. package/docs/functions/initShutdown.md +15 -0
  107. package/docs/functions/interpolateEnv.md +29 -0
  108. package/docs/functions/interpolateFString.md +29 -0
  109. package/docs/functions/interpolateGolangTemplate.md +35 -0
  110. package/docs/functions/isLangUsingSpaces.md +21 -0
  111. package/docs/functions/isListItemString.md +21 -0
  112. package/docs/functions/isModelNameMatched.md +47 -0
  113. package/docs/functions/isPunctuationChar.md +36 -0
  114. package/docs/functions/isQuoted.md +21 -0
  115. package/docs/functions/isRegExp.md +21 -0
  116. package/docs/functions/isSameString.md +36 -0
  117. package/docs/functions/isSectionString.md +25 -0
  118. package/docs/functions/isSentenceEnding.md +21 -0
  119. package/docs/functions/isSepLineString.md +21 -0
  120. package/docs/functions/isStrWrapped.md +25 -0
  121. package/docs/functions/isSubdirectory.md +41 -0
  122. package/docs/functions/isTitleString.md +25 -0
  123. package/docs/functions/isValidFilename.md +38 -0
  124. package/docs/functions/isValidFilepath.md +27 -0
  125. package/docs/functions/isWebStream.md +21 -0
  126. package/docs/functions/jsonFilterToWhere.md +47 -0
  127. package/docs/functions/jsonToMarkdownStr.md +39 -0
  128. package/docs/functions/loadAIConfig.md +21 -0
  129. package/docs/functions/loadConfig.md +25 -0
  130. package/docs/functions/loadConfigFile.md +25 -0
  131. package/docs/functions/loadFileFromPaths.md +64 -0
  132. package/docs/functions/loadTextFromPaths.md +37 -0
  133. package/docs/functions/lrucache.md +35 -0
  134. package/docs/functions/makeToolFuncCancelable.md +29 -0
  135. package/docs/functions/matchUrlProtocol.md +48 -0
  136. package/docs/functions/memoize.md +29 -0
  137. package/docs/functions/messagesToText.md +21 -0
  138. package/docs/functions/paramsSizeToScaleStr.md +34 -0
  139. package/docs/functions/parseCommand.md +29 -0
  140. package/docs/functions/parseDateFormat.md +362 -0
  141. package/docs/functions/parseFString.md +26 -0
  142. package/docs/functions/parseISO.md +70 -0
  143. package/docs/functions/parseJsJson.md +40 -0
  144. package/docs/functions/parseJsJsonSimpleSync.md +25 -0
  145. package/docs/functions/parseObjectArgInfo.md +33 -0
  146. package/docs/functions/parseObjectArgumentInfos.md +29 -0
  147. package/docs/functions/parseObjectArguments.md +72 -0
  148. package/docs/functions/parseObjectArgumentsAsArgInfos.md +46 -0
  149. package/docs/functions/parseYaml.md +25 -0
  150. package/docs/functions/quoteStr.md +21 -0
  151. package/docs/functions/reControlCharsRegex.md +19 -0
  152. package/docs/functions/readFilenamesRecursiveSync.md +53 -0
  153. package/docs/functions/readTextFileChunks.md +53 -0
  154. package/docs/functions/readTextFileChunksEx.md +25 -0
  155. package/docs/functions/readableFromAsyncIterable.md +28 -0
  156. package/docs/functions/registerCoreTools.md +15 -0
  157. package/docs/functions/registerYamlTag.md +21 -0
  158. package/docs/functions/removeMarkdownBold.md +25 -0
  159. package/docs/functions/removeMarkdownBoldAndItalic.md +25 -0
  160. package/docs/functions/removeMarkdownItalic.md +25 -0
  161. package/docs/functions/replaceWithPlaceholder.md +43 -0
  162. package/docs/functions/restoreFromPlacehoders.md +49 -0
  163. package/docs/functions/sanitizeFilename.md +39 -0
  164. package/docs/functions/sanitizeFilepath.md +33 -0
  165. package/docs/functions/saveConfigFile.md +29 -0
  166. package/docs/functions/scaleStrToParamsSize.md +27 -0
  167. package/docs/functions/shutdown.md +33 -0
  168. package/docs/functions/simplifyObjectArguments.md +21 -0
  169. package/docs/functions/sortedValues.md +25 -0
  170. package/docs/functions/splitChunks.md +25 -0
  171. package/docs/functions/splitParagraph.md +34 -0
  172. package/docs/functions/splitSentence.md +39 -0
  173. package/docs/functions/stringifyYaml.md +25 -0
  174. package/docs/functions/stripConsoleColor.md +21 -0
  175. package/docs/functions/textToDate.md +25 -0
  176. package/docs/functions/throwError.md +41 -0
  177. package/docs/functions/toDate.md +74 -0
  178. package/docs/functions/toDateTime.md +21 -0
  179. package/docs/functions/toRegExp.md +34 -0
  180. package/docs/functions/trimStartOfStreamHelper.md +41 -0
  181. package/docs/functions/truncTo.md +51 -0
  182. package/docs/functions/truncateByToken.md +25 -0
  183. package/docs/functions/truncateToTokenLimit.md +46 -0
  184. package/docs/functions/truncateToTokenLimitEx.md +25 -0
  185. package/docs/functions/uuid.md +25 -0
  186. package/docs/functions/uuidParse.md +21 -0
  187. package/docs/functions/uuidStringify.md +25 -0
  188. package/docs/functions/uuidValidate.md +21 -0
  189. package/docs/functions/uuidVersion.md +21 -0
  190. package/docs/functions/uuidv1.md +55 -0
  191. package/docs/functions/uuidv4.md +55 -0
  192. package/docs/functions/uuidv5.md +63 -0
  193. package/docs/functions/wait.md +21 -0
  194. package/docs/functions/wrapEventEmitter.md +27 -0
  195. package/docs/functions/xxhash.md +29 -0
  196. package/docs/functions/xxhash32.md +25 -0
  197. package/docs/functions/xxhash64.md +25 -0
  198. package/docs/functions/xxhashAsStr.md +29 -0
  199. package/docs/globals.md +329 -0
  200. package/docs/interfaces/AIChatAssistantMessageParam.md +129 -0
  201. package/docs/interfaces/AIChatContentPartImage.md +29 -0
  202. package/docs/interfaces/AIChatContentPartText.md +25 -0
  203. package/docs/interfaces/AIChatMessageParamBase.md +68 -0
  204. package/docs/interfaces/AIChatMessageToolCall.md +41 -0
  205. package/docs/interfaces/AIChatSystemMessageParam.md +105 -0
  206. package/docs/interfaces/AIChatToolChoiceFuncObject.md +37 -0
  207. package/docs/interfaces/AIChatToolChoiceObject.md +25 -0
  208. package/docs/interfaces/AIChatToolFunc.md +41 -0
  209. package/docs/interfaces/AIChatToolFuncParam.md +37 -0
  210. package/docs/interfaces/AIChatToolMessageParam.md +113 -0
  211. package/docs/interfaces/AIChatToolParam.md +25 -0
  212. package/docs/interfaces/AIChatToolTypeObject.md +17 -0
  213. package/docs/interfaces/AIChatUserMessageParam.md +137 -0
  214. package/docs/interfaces/AIChoiceConfig.md +65 -0
  215. package/docs/interfaces/AIResult.md +65 -0
  216. package/docs/interfaces/AIStreamParser.md +43 -0
  217. package/docs/interfaces/AIStreamParserOptions.md +21 -0
  218. package/docs/interfaces/BaseFunc.md +145 -0
  219. package/docs/interfaces/BaseFuncItem.md +93 -0
  220. package/docs/interfaces/BinarySemaphoreAcquireOptions.md +25 -0
  221. package/docs/interfaces/BinarySemaphoreOptions.md +57 -0
  222. package/docs/interfaces/BinarySemaphoreReleaseOptions.md +25 -0
  223. package/docs/interfaces/BinarySemaphoreReleaserFunc.md +37 -0
  224. package/docs/interfaces/CancelableAbilityOptions.md +113 -0
  225. package/docs/interfaces/ClientFuncItem.md +163 -0
  226. package/docs/interfaces/DotenvExpandOptions.md +43 -0
  227. package/docs/interfaces/DotenvExpandOutput.md +25 -0
  228. package/docs/interfaces/DotenvParseInput.md +13 -0
  229. package/docs/interfaces/DotenvParseOutput.md +13 -0
  230. package/docs/interfaces/DotenvPopulateInput.md +13 -0
  231. package/docs/interfaces/EventClientFuncParams.md +51 -0
  232. package/docs/interfaces/EventServerFuncParams.md +67 -0
  233. package/docs/interfaces/FewShotPromptTemplateOptions.md +147 -0
  234. package/docs/interfaces/FuncItem.md +131 -0
  235. package/docs/interfaces/FuncParam.md +61 -0
  236. package/docs/interfaces/FuncParams.md +13 -0
  237. package/docs/interfaces/Funcs.md +13 -0
  238. package/docs/interfaces/HashAlgoParams.md +33 -0
  239. package/docs/interfaces/IFileMetaInfo.md +65 -0
  240. package/docs/interfaces/IReadTextFileChunksOptions.md +143 -0
  241. package/docs/interfaces/ITruncateToTokenLimitOptions.md +99 -0
  242. package/docs/interfaces/JsonFilter.md +13 -0
  243. package/docs/interfaces/ParseObjectArgumentOptions.md +89 -0
  244. package/docs/interfaces/PromptExampleSelectorOptions.md +34 -0
  245. package/docs/interfaces/PromptTemplateOptions.md +65 -0
  246. package/docs/interfaces/RemoteFuncItem.md +152 -0
  247. package/docs/interfaces/ReplacePlacehoderOptions.md +41 -0
  248. package/docs/interfaces/ResClientFuncParams.md +37 -0
  249. package/docs/interfaces/ResServerFuncParams.md +69 -0
  250. package/docs/interfaces/SanitizeFilenameOptions.md +25 -0
  251. package/docs/interfaces/SectionStringOptions.md +25 -0
  252. package/docs/interfaces/SemaphoreOptions.md +89 -0
  253. package/docs/interfaces/SemaphoreTaskItem.md +73 -0
  254. package/docs/interfaces/ServerFuncItem.md +171 -0
  255. package/docs/interfaces/ServerFuncParams.md +35 -0
  256. package/docs/interfaces/SplitSentenceOptions.md +41 -0
  257. package/docs/interfaces/StreamCallbacksAndOptions.md +99 -0
  258. package/docs/interfaces/TaskAbortControllers.md +13 -0
  259. package/docs/interfaces/TaskPromise.md +138 -0
  260. package/docs/interfaces/ToolFuncPackage.md +47 -0
  261. package/docs/namespaces/EventStates/README.md +14 -0
  262. package/docs/namespaces/EventStates/variables/ABORT.md +11 -0
  263. package/docs/namespaces/EventStates/variables/CONTINUE.md +11 -0
  264. package/docs/namespaces/EventStates/variables/DONE.md +11 -0
  265. package/docs/namespaces/EventStates/variables/STOPPED.md +11 -0
  266. package/docs/namespaces/uuidv5/README.md +12 -0
  267. package/docs/namespaces/uuidv5/variables/DNS.md +11 -0
  268. package/docs/namespaces/uuidv5/variables/URL.md +11 -0
  269. package/docs/type-aliases/AIChatContentPart.md +11 -0
  270. package/docs/type-aliases/AIChatMessageParam.md +11 -0
  271. package/docs/type-aliases/AIChatRole.md +11 -0
  272. package/docs/type-aliases/AIChatToolChoiceParam.md +11 -0
  273. package/docs/type-aliases/AIMessageType.md +11 -0
  274. package/docs/type-aliases/AIModelNameRule.md +11 -0
  275. package/docs/type-aliases/AIModelNameRuleFn.md +21 -0
  276. package/docs/type-aliases/AIModelNameRules.md +11 -0
  277. package/docs/type-aliases/AITextGenerationFinishReason.md +11 -0
  278. package/docs/type-aliases/ActionName.md +11 -0
  279. package/docs/type-aliases/AsyncTaskId.md +11 -0
  280. package/docs/type-aliases/BeforeShutdownListener.md +23 -0
  281. package/docs/type-aliases/EventErrorListenerFn.md +33 -0
  282. package/docs/type-aliases/EventListenerFn.md +29 -0
  283. package/docs/type-aliases/FStringPromptTemplateNode.md +14 -0
  284. package/docs/type-aliases/FuncParamType.md +11 -0
  285. package/docs/type-aliases/PromptExamples.md +15 -0
  286. package/docs/type-aliases/PromptTemplateType.md +11 -0
  287. package/docs/type-aliases/PromptType.md +11 -0
  288. package/docs/type-aliases/SemaphoreIsReadyFuncType.md +15 -0
  289. package/docs/type-aliases/TFunc.md +25 -0
  290. package/docs/variables/AIChatRoles.md +11 -0
  291. package/docs/variables/AIMessageTypes.md +11 -0
  292. package/docs/variables/AITextGenerationFinishReasons.md +11 -0
  293. package/docs/variables/AbortErrorCode.md +11 -0
  294. package/docs/variables/ActionNames.md +11 -0
  295. package/docs/variables/AlreadyExistsErrorCode.md +11 -0
  296. package/docs/variables/ClientToolFuncSchema.md +101 -0
  297. package/docs/variables/DEFAULT_CONFIG_NAME.md +11 -0
  298. package/docs/variables/DefaultAsyncSemaphoreCapacity.md +11 -0
  299. package/docs/variables/EventBusName.md +11 -0
  300. package/docs/variables/EventName.md +11 -0
  301. package/docs/variables/FilenameReservedRegex.md +14 -0
  302. package/docs/variables/HFBuiltins.md +122 -0
  303. package/docs/variables/InternalErrorCode.md +11 -0
  304. package/docs/variables/LLM_TOKENIZER_NAMES.md +81 -0
  305. package/docs/variables/LLM_TOKENIZER_NAMES_MAP.md +11 -0
  306. package/docs/variables/NotFoundErrorCode.md +11 -0
  307. package/docs/variables/NotImplementedErrorCode.md +11 -0
  308. package/docs/variables/PASSING_SCORE.md +11 -0
  309. package/docs/variables/PromptTemplateTypes.md +11 -0
  310. package/docs/variables/PromptTypes.md +14 -0
  311. package/docs/variables/RStreamErrCode.md +11 -0
  312. package/docs/variables/RemoteToolFuncSchema.md +101 -0
  313. package/docs/variables/ResponseRStreamErrCode.md +11 -0
  314. package/docs/variables/SHUTDOWN_SIGNALS.md +17 -0
  315. package/docs/variables/SSEChannelAlreadyClosedErrCode.md +11 -0
  316. package/docs/variables/SecondaryCache.md +11 -0
  317. package/docs/variables/ServerToolFuncSchema.md +101 -0
  318. package/docs/variables/ToolAsyncCancelableBit.md +11 -0
  319. package/docs/variables/ToolAsyncMultiTaskBit.md +11 -0
  320. package/docs/variables/ToolAsyncPriorityBit.md +11 -0
  321. package/docs/variables/ToolFuncSchema.md +133 -0
  322. package/docs/variables/WindowsReservedNameRegex.md +13 -0
  323. package/docs/variables/base32768.md +11 -0
  324. package/docs/variables/defaultTemplateFormat.md +11 -0
  325. package/docs/variables/event.md +11 -0
  326. package/docs/variables/eventClient.md +11 -0
  327. package/docs/variables/eventServer.md +11 -0
  328. package/docs/variables/lrucache.md +11 -0
  329. package/docs/variables/mimeType.md +11 -0
  330. package/docs/variables/uuidNIL.md +11 -0
  331. package/package.json +2 -2
@@ -0,0 +1,1180 @@
1
+ [**@isdk/ai-tool**](../README.md)
2
+
3
+ ***
4
+
5
+ [@isdk/ai-tool](../globals.md) / FewShotPromptTemplate
6
+
7
+ # Class: FewShotPromptTemplate\<T\>
8
+
9
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:39](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L39)
10
+
11
+ ## Extends
12
+
13
+ - [`PromptTemplate`](PromptTemplate.md)
14
+
15
+ ## Type Parameters
16
+
17
+ • **T** = `any`
18
+
19
+ ## Constructors
20
+
21
+ ### new FewShotPromptTemplate()
22
+
23
+ > **new FewShotPromptTemplate**\<`T`\>(`options`): [`FewShotPromptTemplate`](FewShotPromptTemplate.md)\<`T`\>
24
+
25
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:50](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L50)
26
+
27
+ #### Parameters
28
+
29
+ ##### options
30
+
31
+ [`FewShotPromptTemplateOptions`](../interfaces/FewShotPromptTemplateOptions.md)\<`T`\>
32
+
33
+ #### Returns
34
+
35
+ [`FewShotPromptTemplate`](FewShotPromptTemplate.md)\<`T`\>
36
+
37
+ #### Overrides
38
+
39
+ [`PromptTemplate`](PromptTemplate.md).[`constructor`](PromptTemplate.md#constructors)
40
+
41
+ ## Properties
42
+
43
+ ### compiledTemplate
44
+
45
+ > **compiledTemplate**: `any`
46
+
47
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:21](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L21)
48
+
49
+ #### Inherited from
50
+
51
+ [`PromptTemplate`](PromptTemplate.md).[`compiledTemplate`](PromptTemplate.md#compiledtemplate)
52
+
53
+ ***
54
+
55
+ ### data
56
+
57
+ > **data**: `undefined` \| `Record`\<`string`, `any`\>
58
+
59
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:24](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L24)
60
+
61
+ #### Inherited from
62
+
63
+ [`PromptTemplate`](PromptTemplate.md).[`data`](PromptTemplate.md#data)
64
+
65
+ ***
66
+
67
+ ### examplePrompt
68
+
69
+ > **examplePrompt**: `undefined` \| [`PromptTemplate`](PromptTemplate.md)
70
+
71
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:41](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L41)
72
+
73
+ ***
74
+
75
+ ### examples
76
+
77
+ > **examples**: [`PromptExamples`](../type-aliases/PromptExamples.md)\<`T`\>
78
+
79
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:40](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L40)
80
+
81
+ ***
82
+
83
+ ### exampleSeparator
84
+
85
+ > **exampleSeparator**: `string`
86
+
87
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:43](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L43)
88
+
89
+ ***
90
+
91
+ ### inputVariables
92
+
93
+ > **inputVariables**: `undefined` \| `string`[]
94
+
95
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:25](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L25)
96
+
97
+ #### Inherited from
98
+
99
+ [`PromptTemplate`](PromptTemplate.md).[`inputVariables`](PromptTemplate.md#inputvariables)
100
+
101
+ ***
102
+
103
+ ### prefix
104
+
105
+ > **prefix**: `string`
106
+
107
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:44](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L44)
108
+
109
+ ***
110
+
111
+ ### suffix
112
+
113
+ > **suffix**: `string`
114
+
115
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:42](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L42)
116
+
117
+ ***
118
+
119
+ ### template
120
+
121
+ > **template**: `string`
122
+
123
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:22](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L22)
124
+
125
+ #### Inherited from
126
+
127
+ [`PromptTemplate`](PromptTemplate.md).[`template`](PromptTemplate.md#template-1)
128
+
129
+ ***
130
+
131
+ ### templateFormat
132
+
133
+ > **templateFormat**: `undefined` \| `string`
134
+
135
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:23](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L23)
136
+
137
+ #### Inherited from
138
+
139
+ [`PromptTemplate`](PromptTemplate.md).[`templateFormat`](PromptTemplate.md#templateformat)
140
+
141
+ ***
142
+
143
+ ### \_aliases
144
+
145
+ > `abstract` `static` **\_aliases**: \[`string`\]
146
+
147
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:59
148
+
149
+ **`Internal`**
150
+
151
+ the registered alias items object.
152
+ the key is alias name, the value is the registered name
153
+
154
+ #### Inherited from
155
+
156
+ [`PromptTemplate`](PromptTemplate.md).[`_aliases`](PromptTemplate.md#_aliases)
157
+
158
+ ***
159
+
160
+ ### \_baseNameOnly
161
+
162
+ > `static` **\_baseNameOnly**: `number`
163
+
164
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:82
165
+
166
+ **`Internal`**
167
+
168
+ Extracts a specified number of words from a PascalCase class name to use as a base name for registration,
169
+ only if no `name` is specified. The parameter value indicates the maximum depth of the word extraction.
170
+
171
+ In JavaScript, class names use `PascalCase` convention where each word starts with a capital letter.
172
+ The baseNameOnly parameter is a number that specifies which words to extract from the class name as the base name.
173
+ If the value is 1, it extracts the first word, 2 extracts the first two words, and 0 uses the entire class name.
174
+ The base name is used to register the class to the factory.
175
+
176
+ #### Example
177
+
178
+ ```ts
179
+ such as "JsonTextCodec" if baseNameOnly is 1, the first word "Json" will be extracted from "JsonTextCodec" as
180
+ the base name. If baseNameOnly is 2, the first two words "JsonText" will be extracted as the base name. If
181
+ baseNameOnly is 0, the entire class name "JsonTextCodec" will be used as the base name.
182
+ ```
183
+
184
+ #### Name
185
+
186
+ _baseNameOnly
187
+
188
+ #### Default
189
+
190
+ ```ts
191
+ 1
192
+ @internal
193
+ ```
194
+
195
+ #### Inherited from
196
+
197
+ [`PromptTemplate`](PromptTemplate.md).[`_baseNameOnly`](PromptTemplate.md#_basenameonly)
198
+
199
+ ***
200
+
201
+ ### \_children
202
+
203
+ > `abstract` `static` **\_children**: `object`
204
+
205
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:49
206
+
207
+ **`Internal`**
208
+
209
+ The registered classes in the Factory
210
+
211
+ #### Index Signature
212
+
213
+ \[`name`: `string`\]: `any`
214
+
215
+ #### Name
216
+
217
+ _children
218
+
219
+ #### Inherited from
220
+
221
+ [`PromptTemplate`](PromptTemplate.md).[`_children`](PromptTemplate.md#_children)
222
+
223
+ ***
224
+
225
+ ### \_Factory
226
+
227
+ > `abstract` `static` **\_Factory**: *typeof* `BaseFactory`
228
+
229
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:41
230
+
231
+ **`Internal`**
232
+
233
+ The Root Factory class
234
+
235
+ #### Name
236
+
237
+ _Factory
238
+
239
+ #### Inherited from
240
+
241
+ [`PromptTemplate`](PromptTemplate.md).[`_Factory`](PromptTemplate.md#_factory)
242
+
243
+ ## Accessors
244
+
245
+ ### aliases
246
+
247
+ #### Get Signature
248
+
249
+ > **get** `static` **aliases**(): `string`[]
250
+
251
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:200
252
+
253
+ the aliases of itself
254
+
255
+ ##### Returns
256
+
257
+ `string`[]
258
+
259
+ #### Set Signature
260
+
261
+ > **set** `static` **aliases**(`value`): `void`
262
+
263
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:196
264
+
265
+ ##### Parameters
266
+
267
+ ###### value
268
+
269
+ `string`[]
270
+
271
+ ##### Returns
272
+
273
+ `void`
274
+
275
+ #### Inherited from
276
+
277
+ [`PromptTemplate`](PromptTemplate.md).[`aliases`](PromptTemplate.md#aliases)
278
+
279
+ ***
280
+
281
+ ### Factory
282
+
283
+ #### Get Signature
284
+
285
+ > **get** `static` **Factory**(): *typeof* `BaseFactory`
286
+
287
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:63
288
+
289
+ The Root Factory class
290
+
291
+ ##### Returns
292
+
293
+ *typeof* `BaseFactory`
294
+
295
+ #### Inherited from
296
+
297
+ [`PromptTemplate`](PromptTemplate.md).[`Factory`](PromptTemplate.md#factory)
298
+
299
+ ## Methods
300
+
301
+ ### \_format()
302
+
303
+ > **\_format**(`data`): `Promise`\<`string`\>
304
+
305
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:69](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L69)
306
+
307
+ #### Parameters
308
+
309
+ ##### data
310
+
311
+ `Record`\<`string`, `any`\>
312
+
313
+ #### Returns
314
+
315
+ `Promise`\<`string`\>
316
+
317
+ #### Overrides
318
+
319
+ [`PromptTemplate`](PromptTemplate.md).[`_format`](PromptTemplate.md#_format)
320
+
321
+ ***
322
+
323
+ ### \_initialize()
324
+
325
+ > **\_initialize**(`options`?): `void`
326
+
327
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:54](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L54)
328
+
329
+ #### Parameters
330
+
331
+ ##### options?
332
+
333
+ [`FewShotPromptTemplateOptions`](../interfaces/FewShotPromptTemplateOptions.md)\<`T`\>
334
+
335
+ #### Returns
336
+
337
+ `void`
338
+
339
+ #### Overrides
340
+
341
+ [`PromptTemplate`](PromptTemplate.md).[`_initialize`](PromptTemplate.md#_initialize)
342
+
343
+ ***
344
+
345
+ ### filterData()
346
+
347
+ > **filterData**(`data`): `Record`\<`string`, `any`\>
348
+
349
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:62](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L62)
350
+
351
+ Validate/filter the data in inputVariables
352
+
353
+ #### Parameters
354
+
355
+ ##### data
356
+
357
+ `Record`\<`string`, `any`\>
358
+
359
+ #### Returns
360
+
361
+ `Record`\<`string`, `any`\>
362
+
363
+ #### Inherited from
364
+
365
+ [`PromptTemplate`](PromptTemplate.md).[`filterData`](PromptTemplate.md#filterdata)
366
+
367
+ ***
368
+
369
+ ### format()
370
+
371
+ > **format**(`data`?): `Promise`\<`string`\>
372
+
373
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:109](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L109)
374
+
375
+ #### Parameters
376
+
377
+ ##### data?
378
+
379
+ `Record`\<`string`, `any`\>
380
+
381
+ #### Returns
382
+
383
+ `Promise`\<`string`\>
384
+
385
+ #### Inherited from
386
+
387
+ [`PromptTemplate`](PromptTemplate.md).[`format`](PromptTemplate.md#format)
388
+
389
+ ***
390
+
391
+ ### initialize()
392
+
393
+ > `abstract` **initialize**(`options`?): `void`
394
+
395
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:96](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L96)
396
+
397
+ **`Internal`**
398
+
399
+ initialize instance method
400
+
401
+ #### Parameters
402
+
403
+ ##### options?
404
+
405
+ [`PromptTemplateOptions`](../interfaces/PromptTemplateOptions.md)
406
+
407
+ #### Returns
408
+
409
+ `void`
410
+
411
+ #### Inherited from
412
+
413
+ [`PromptTemplate`](PromptTemplate.md).[`initialize`](PromptTemplate.md#initialize)
414
+
415
+ ***
416
+
417
+ ### partial()
418
+
419
+ > **partial**(`data`): [`PromptTemplate`](PromptTemplate.md)
420
+
421
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:139](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L139)
422
+
423
+ it can make sense to "partial" a prompt template - eg pass in a subset of the required values, as to create a new prompt template which expects only the remaining subset of values.
424
+
425
+ #### Parameters
426
+
427
+ ##### data
428
+
429
+ `Record`\<`string`, `any`\>
430
+
431
+ the partial data
432
+
433
+ #### Returns
434
+
435
+ [`PromptTemplate`](PromptTemplate.md)
436
+
437
+ the new partial PromptTemplate instance
438
+
439
+ #### Inherited from
440
+
441
+ [`PromptTemplate`](PromptTemplate.md).[`partial`](PromptTemplate.md#partial)
442
+
443
+ ***
444
+
445
+ ### toJSON()
446
+
447
+ > **toJSON**(`options`): [`FewShotPromptTemplateOptions`](../interfaces/FewShotPromptTemplateOptions.md)\<`T`\>
448
+
449
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:94](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L94)
450
+
451
+ #### Parameters
452
+
453
+ ##### options
454
+
455
+ `this` = `...`
456
+
457
+ #### Returns
458
+
459
+ [`FewShotPromptTemplateOptions`](../interfaces/FewShotPromptTemplateOptions.md)\<`T`\>
460
+
461
+ #### Overrides
462
+
463
+ [`PromptTemplate`](PromptTemplate.md).[`toJSON`](PromptTemplate.md#tojson)
464
+
465
+ ***
466
+
467
+ ### \_findRootFactory()
468
+
469
+ > `static` **\_findRootFactory**(`aClass`): `undefined` \| *typeof* `BaseFactory`
470
+
471
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:99
472
+
473
+ **`Internal`**
474
+
475
+ find the real root factory
476
+
477
+ #### Parameters
478
+
479
+ ##### aClass
480
+
481
+ *typeof* `BaseFactory`
482
+
483
+ the abstract root factory class
484
+
485
+ #### Returns
486
+
487
+ `undefined` \| *typeof* `BaseFactory`
488
+
489
+ #### Inherited from
490
+
491
+ [`PromptTemplate`](PromptTemplate.md).[`_findRootFactory`](PromptTemplate.md#_findrootfactory)
492
+
493
+ ***
494
+
495
+ ### \_get()
496
+
497
+ > `static` **\_get**(`name`): `any`
498
+
499
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:234
500
+
501
+ #### Parameters
502
+
503
+ ##### name
504
+
505
+ `any`
506
+
507
+ #### Returns
508
+
509
+ `any`
510
+
511
+ #### Inherited from
512
+
513
+ [`PromptTemplate`](PromptTemplate.md).[`_get`](PromptTemplate.md#_get)
514
+
515
+ ***
516
+
517
+ ### \_register()
518
+
519
+ > `static` **\_register**(`aClass`, `aOptions`?): `boolean`
520
+
521
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:145
522
+
523
+ **`Internal`**
524
+
525
+ register the aClass to the factory
526
+
527
+ #### Parameters
528
+
529
+ ##### aClass
530
+
531
+ *typeof* `BaseFactory`
532
+
533
+ the class to register the Factory
534
+
535
+ ##### aOptions?
536
+
537
+ `any`
538
+
539
+ the options for the class and the factory
540
+
541
+ #### Returns
542
+
543
+ `boolean`
544
+
545
+ return true if successful.
546
+
547
+ #### Inherited from
548
+
549
+ [`PromptTemplate`](PromptTemplate.md).[`_register`](PromptTemplate.md#_register)
550
+
551
+ ***
552
+
553
+ ### cleanAliases()
554
+
555
+ > `static` **cleanAliases**(`aName`): `void`
556
+
557
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:162
558
+
559
+ remove all aliases of the registered item or itself
560
+
561
+ #### Parameters
562
+
563
+ ##### aName
564
+
565
+ the registered item or name
566
+
567
+ `undefined` | `string` | *typeof* `BaseFactory`
568
+
569
+ #### Returns
570
+
571
+ `void`
572
+
573
+ #### Inherited from
574
+
575
+ [`PromptTemplate`](PromptTemplate.md).[`cleanAliases`](PromptTemplate.md#cleanaliases)
576
+
577
+ ***
578
+
579
+ ### createObject()
580
+
581
+ > `static` **createObject**(`aName`, `aOptions`): `undefined` \| `BaseFactory`
582
+
583
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:241
584
+
585
+ Create a new object instance of Factory
586
+
587
+ #### Parameters
588
+
589
+ ##### aName
590
+
591
+ `string` | `BaseFactory`
592
+
593
+ ##### aOptions
594
+
595
+ `any`
596
+
597
+ #### Returns
598
+
599
+ `undefined` \| `BaseFactory`
600
+
601
+ #### Inherited from
602
+
603
+ [`PromptTemplate`](PromptTemplate.md).[`createObject`](PromptTemplate.md#createobject)
604
+
605
+ ***
606
+
607
+ ### findRootFactory()
608
+
609
+ > `abstract` `static` **findRootFactory**(): `undefined` \| *typeof* `BaseFactory`
610
+
611
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:92
612
+
613
+ **`Internal`**
614
+
615
+ find the real root factory
616
+
617
+ You can overwrite it to specify your root factory class
618
+ or set _Factory directly.
619
+
620
+ #### Returns
621
+
622
+ `undefined` \| *typeof* `BaseFactory`
623
+
624
+ the root factory class
625
+
626
+ #### Inherited from
627
+
628
+ [`PromptTemplate`](PromptTemplate.md).[`findRootFactory`](PromptTemplate.md#findrootfactory)
629
+
630
+ ***
631
+
632
+ ### forEach()
633
+
634
+ > `static` **forEach**(`cb`): `any`
635
+
636
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:227
637
+
638
+ executes a provided callback function once for each registered element.
639
+
640
+ #### Parameters
641
+
642
+ ##### cb
643
+
644
+ (`ctor`, `name`) => `undefined` \| `string`
645
+
646
+ the forEach callback function
647
+
648
+ #### Returns
649
+
650
+ `any`
651
+
652
+ #### Inherited from
653
+
654
+ [`PromptTemplate`](PromptTemplate.md).[`forEach`](PromptTemplate.md#foreach)
655
+
656
+ ***
657
+
658
+ ### format()
659
+
660
+ > `static` **format**(`options`): `Promise`\<`string`\>
661
+
662
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:31](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L31)
663
+
664
+ #### Parameters
665
+
666
+ ##### options
667
+
668
+ [`PromptTemplateOptions`](../interfaces/PromptTemplateOptions.md)
669
+
670
+ #### Returns
671
+
672
+ `Promise`\<`string`\>
673
+
674
+ #### Inherited from
675
+
676
+ [`PromptTemplate`](PromptTemplate.md).[`format`](PromptTemplate.md#format-2)
677
+
678
+ ***
679
+
680
+ ### formatIf()
681
+
682
+ > `static` **formatIf**(`options`): `Promise`\<`undefined` \| `string`\>
683
+
684
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:41](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L41)
685
+
686
+ If the given options.template is the template, perform formatting using that template.
687
+
688
+ #### Parameters
689
+
690
+ ##### options
691
+
692
+ [`PromptTemplateOptions`](../interfaces/PromptTemplateOptions.md)
693
+
694
+ The options object to check for being a template and to format.
695
+
696
+ #### Returns
697
+
698
+ `Promise`\<`undefined` \| `string`\>
699
+
700
+ A Promise that resolves to the formatted result if options is a template; otherwise, no value is returned.
701
+
702
+ #### Inherited from
703
+
704
+ [`PromptTemplate`](PromptTemplate.md).[`formatIf`](PromptTemplate.md#formatif)
705
+
706
+ ***
707
+
708
+ ### formatName()
709
+
710
+ > `abstract` `static` **formatName**(`aName`): `string`
711
+
712
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:116
713
+
714
+ **`Internal`**
715
+
716
+ format(transform) the name to be registered.
717
+
718
+ defaults to returning the name unchanged. By overloading this method, case-insensitive names can be achieved.
719
+
720
+ #### Parameters
721
+
722
+ ##### aName
723
+
724
+ `string`
725
+
726
+ #### Returns
727
+
728
+ `string`
729
+
730
+ #### Inherited from
731
+
732
+ [`PromptTemplate`](PromptTemplate.md).[`formatName`](PromptTemplate.md#formatname)
733
+
734
+ ***
735
+
736
+ ### formatNameFromClass()
737
+
738
+ > `static` **formatNameFromClass**(`aClass`, `aBaseNameOnly`?): `string`
739
+
740
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:130
741
+
742
+ **`Internal`**
743
+
744
+ format(transform) the name to be registered for the aClass
745
+
746
+ #### Parameters
747
+
748
+ ##### aClass
749
+
750
+ `any`
751
+
752
+ ##### aBaseNameOnly?
753
+
754
+ `number`
755
+
756
+ #### Returns
757
+
758
+ `string`
759
+
760
+ the name to register
761
+
762
+ #### Inherited from
763
+
764
+ [`PromptTemplate`](PromptTemplate.md).[`formatNameFromClass`](PromptTemplate.md#formatnamefromclass)
765
+
766
+ ***
767
+
768
+ ### from()
769
+
770
+ > `static` **from**\<`T`\>(`options`): [`FewShotPromptTemplate`](FewShotPromptTemplate.md)\<`T`\>
771
+
772
+ Defined in: [packages/ai-tool/src/utils/prompt/few-shot-prompt-template.ts:46](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/few-shot-prompt-template.ts#L46)
773
+
774
+ #### Type Parameters
775
+
776
+ • **T** = `any`
777
+
778
+ #### Parameters
779
+
780
+ ##### options
781
+
782
+ [`FewShotPromptTemplateOptions`](../interfaces/FewShotPromptTemplateOptions.md)\<`T`\>
783
+
784
+ #### Returns
785
+
786
+ [`FewShotPromptTemplate`](FewShotPromptTemplate.md)\<`T`\>
787
+
788
+ #### Overrides
789
+
790
+ [`PromptTemplate`](PromptTemplate.md).[`from`](PromptTemplate.md#from)
791
+
792
+ ***
793
+
794
+ ### get()
795
+
796
+ > `static` **get**(`name`): `undefined` \| *typeof* `BaseFactory`
797
+
798
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:233
799
+
800
+ Get the registered class via name
801
+
802
+ #### Parameters
803
+
804
+ ##### name
805
+
806
+ `any`
807
+
808
+ #### Returns
809
+
810
+ `undefined` \| *typeof* `BaseFactory`
811
+
812
+ return the registered class if found the name
813
+
814
+ #### Inherited from
815
+
816
+ [`PromptTemplate`](PromptTemplate.md).[`get`](PromptTemplate.md#get)
817
+
818
+ ***
819
+
820
+ ### getAliases()
821
+
822
+ > `static` **getAliases**(`aClass`): `string`[]
823
+
824
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:195
825
+
826
+ get the aliases of the aClass
827
+
828
+ #### Parameters
829
+
830
+ ##### aClass
831
+
832
+ the class or name to get aliases, means itself if no aClass specified
833
+
834
+ `undefined` | `string` | *typeof* `BaseFactory`
835
+
836
+ #### Returns
837
+
838
+ `string`[]
839
+
840
+ aliases
841
+
842
+ #### Inherited from
843
+
844
+ [`PromptTemplate`](PromptTemplate.md).[`getAliases`](PromptTemplate.md#getaliases)
845
+
846
+ ***
847
+
848
+ ### getDisplayName()
849
+
850
+ > `static` **getDisplayName**(`aClass`): `undefined` \| `string`
851
+
852
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:206
853
+
854
+ Get the display name from aClass
855
+
856
+ #### Parameters
857
+
858
+ ##### aClass
859
+
860
+ the class, name or itself, means itself if no aClass
861
+
862
+ `undefined` | `string` | `Function`
863
+
864
+ #### Returns
865
+
866
+ `undefined` \| `string`
867
+
868
+ #### Inherited from
869
+
870
+ [`PromptTemplate`](PromptTemplate.md).[`getDisplayName`](PromptTemplate.md#getdisplayname)
871
+
872
+ ***
873
+
874
+ ### getNameFrom()
875
+
876
+ > `static` **getNameFrom**(`aClass`): `string`
877
+
878
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:122
879
+
880
+ Get the unique(registered) name in the factory
881
+
882
+ #### Parameters
883
+
884
+ ##### aClass
885
+
886
+ `string` | `Function`
887
+
888
+ #### Returns
889
+
890
+ `string`
891
+
892
+ the unique name in the factory
893
+
894
+ #### Inherited from
895
+
896
+ [`PromptTemplate`](PromptTemplate.md).[`getNameFrom`](PromptTemplate.md#getnamefrom)
897
+
898
+ ***
899
+
900
+ ### getRealName()
901
+
902
+ > `static` **getRealName**(`name`): `any`
903
+
904
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:100
905
+
906
+ #### Parameters
907
+
908
+ ##### name
909
+
910
+ `any`
911
+
912
+ #### Returns
913
+
914
+ `any`
915
+
916
+ #### Inherited from
917
+
918
+ [`PromptTemplate`](PromptTemplate.md).[`getRealName`](PromptTemplate.md#getrealname)
919
+
920
+ ***
921
+
922
+ ### getRealNameFromAlias()
923
+
924
+ > `static` **getRealNameFromAlias**(`alias`): `undefined` \| `string`
925
+
926
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:106
927
+
928
+ get the unique name in the factory from an alias name
929
+
930
+ #### Parameters
931
+
932
+ ##### alias
933
+
934
+ `string`
935
+
936
+ the alias name
937
+
938
+ #### Returns
939
+
940
+ `undefined` \| `string`
941
+
942
+ the unique name in the factory
943
+
944
+ #### Inherited from
945
+
946
+ [`PromptTemplate`](PromptTemplate.md).[`getRealNameFromAlias`](PromptTemplate.md#getrealnamefromalias)
947
+
948
+ ***
949
+
950
+ ### isTemplate()
951
+
952
+ > `static` **isTemplate**(`templateOpt`): `any`
953
+
954
+ Defined in: [packages/ai-tool/src/utils/prompt/prompt-template.ts:48](https://github.com/isdk/ai-tool.js/blob/7135b3a67072644f21685b76900b7f351401749e/src/utils/prompt/prompt-template.ts#L48)
955
+
956
+ #### Parameters
957
+
958
+ ##### templateOpt
959
+
960
+ [`PromptTemplateOptions`](../interfaces/PromptTemplateOptions.md)
961
+
962
+ #### Returns
963
+
964
+ `any`
965
+
966
+ #### Inherited from
967
+
968
+ [`PromptTemplate`](PromptTemplate.md).[`isTemplate`](PromptTemplate.md#istemplate)
969
+
970
+ ***
971
+
972
+ ### register()
973
+
974
+ > `static` **register**(...`args`): `boolean`
975
+
976
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:137
977
+
978
+ register the aClass to the factory
979
+
980
+ #### Parameters
981
+
982
+ ##### args
983
+
984
+ ...`any`[]
985
+
986
+ #### Returns
987
+
988
+ `boolean`
989
+
990
+ return true if successful.
991
+
992
+ #### Inherited from
993
+
994
+ [`PromptTemplate`](PromptTemplate.md).[`register`](PromptTemplate.md#register)
995
+
996
+ ***
997
+
998
+ ### registeredClass()
999
+
1000
+ > `static` **registeredClass**(`aName`): `false` \| *typeof* `BaseFactory`
1001
+
1002
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:151
1003
+
1004
+ Check the name, alias or itself whether registered.
1005
+
1006
+ #### Parameters
1007
+
1008
+ ##### aName
1009
+
1010
+ the class name
1011
+
1012
+ `undefined` | `string`
1013
+
1014
+ #### Returns
1015
+
1016
+ `false` \| *typeof* `BaseFactory`
1017
+
1018
+ the registered class if registered, otherwise returns false
1019
+
1020
+ #### Inherited from
1021
+
1022
+ [`PromptTemplate`](PromptTemplate.md).[`registeredClass`](PromptTemplate.md#registeredclass)
1023
+
1024
+ ***
1025
+
1026
+ ### removeAlias()
1027
+
1028
+ > `static` **removeAlias**(...`aliases`): `void`
1029
+
1030
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:167
1031
+
1032
+ remove specified aliases
1033
+
1034
+ #### Parameters
1035
+
1036
+ ##### aliases
1037
+
1038
+ ...`string`[]
1039
+
1040
+ the aliases to remove
1041
+
1042
+ #### Returns
1043
+
1044
+ `void`
1045
+
1046
+ #### Inherited from
1047
+
1048
+ [`PromptTemplate`](PromptTemplate.md).[`removeAlias`](PromptTemplate.md#removealias)
1049
+
1050
+ ***
1051
+
1052
+ ### setAlias()
1053
+
1054
+ > `static` **setAlias**(`aClass`, `alias`): `void`
1055
+
1056
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:189
1057
+
1058
+ set alias to a class
1059
+
1060
+ #### Parameters
1061
+
1062
+ ##### aClass
1063
+
1064
+ the class to set alias
1065
+
1066
+ `undefined` | `string` | *typeof* `BaseFactory`
1067
+
1068
+ ##### alias
1069
+
1070
+ `string`
1071
+
1072
+ #### Returns
1073
+
1074
+ `void`
1075
+
1076
+ #### Inherited from
1077
+
1078
+ [`PromptTemplate`](PromptTemplate.md).[`setAlias`](PromptTemplate.md#setalias)
1079
+
1080
+ ***
1081
+
1082
+ ### setAliases()
1083
+
1084
+ > `static` **setAliases**(`aClass`, ...`aAliases`): `void`
1085
+
1086
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:183
1087
+
1088
+ set aliases to a class
1089
+
1090
+ #### Parameters
1091
+
1092
+ ##### aClass
1093
+
1094
+ the class to set aliases
1095
+
1096
+ `undefined` | `string` | *typeof* `BaseFactory`
1097
+
1098
+ ##### aAliases
1099
+
1100
+ ...`any`[]
1101
+
1102
+ #### Returns
1103
+
1104
+ `void`
1105
+
1106
+ #### Example
1107
+
1108
+ ```ts
1109
+ import { BaseFactory } from 'custom-factory'
1110
+ class Factory extends BaseFactory {}
1111
+ const register = Factory.register.bind(Factory)
1112
+ const aliases = Factory.setAliases.bind(Factory)
1113
+ class MyFactory {}
1114
+ register(MyFactory)
1115
+ aliases(MyFactory, 'my', 'MY')
1116
+ ```
1117
+
1118
+ #### Inherited from
1119
+
1120
+ [`PromptTemplate`](PromptTemplate.md).[`setAliases`](PromptTemplate.md#setaliases)
1121
+
1122
+ ***
1123
+
1124
+ ### setDisplayName()
1125
+
1126
+ > `static` **setDisplayName**(`aClass`, `aDisplayName`): `void`
1127
+
1128
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:212
1129
+
1130
+ Set the display name to the aClass
1131
+
1132
+ #### Parameters
1133
+
1134
+ ##### aClass
1135
+
1136
+ the class, name or itself, means itself if no aClass
1137
+
1138
+ `undefined` | `string` | `Function`
1139
+
1140
+ ##### aDisplayName
1141
+
1142
+ the display name to set
1143
+
1144
+ `string` | \{ `displayName`: `string`; \}
1145
+
1146
+ #### Returns
1147
+
1148
+ `void`
1149
+
1150
+ #### Inherited from
1151
+
1152
+ [`PromptTemplate`](PromptTemplate.md).[`setDisplayName`](PromptTemplate.md#setdisplayname)
1153
+
1154
+ ***
1155
+
1156
+ ### unregister()
1157
+
1158
+ > `static` **unregister**(`aName`): `boolean`
1159
+
1160
+ Defined in: node\_modules/.pnpm/custom-factory@2.3.0/node\_modules/custom-factory/lib/base-factory.d.ts:157
1161
+
1162
+ unregister this class in the factory
1163
+
1164
+ #### Parameters
1165
+
1166
+ ##### aName
1167
+
1168
+ the registered name or class, no name means unregister itself.
1169
+
1170
+ `undefined` | `string` | `Function`
1171
+
1172
+ #### Returns
1173
+
1174
+ `boolean`
1175
+
1176
+ true means successful
1177
+
1178
+ #### Inherited from
1179
+
1180
+ [`PromptTemplate`](PromptTemplate.md).[`unregister`](PromptTemplate.md#unregister)