@ax-llm/ax 16.0.9 → 16.0.10

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.
package/index.d.cts CHANGED
@@ -2170,6 +2170,11 @@ declare class AxPromptTemplate {
2170
2170
  private readonly examplesInSystem;
2171
2171
  private readonly ignoreBreakpoints;
2172
2172
  constructor(sig: Readonly<AxSignature>, options?: Readonly<AxPromptTemplateOptions>, fieldTemplates?: Record<string, AxFieldTemplateFn>);
2173
+ /**
2174
+ * Build a map from field names to their formatted titles.
2175
+ * Used for formatting field name references within descriptions.
2176
+ */
2177
+ private getFieldNameToTitleMap;
2173
2178
  /**
2174
2179
  * Sort fields so that cached fields come first.
2175
2180
  * Uses stable sort to preserve relative order among cached and non-cached fields.
package/index.d.ts CHANGED
@@ -2170,6 +2170,11 @@ declare class AxPromptTemplate {
2170
2170
  private readonly examplesInSystem;
2171
2171
  private readonly ignoreBreakpoints;
2172
2172
  constructor(sig: Readonly<AxSignature>, options?: Readonly<AxPromptTemplateOptions>, fieldTemplates?: Record<string, AxFieldTemplateFn>);
2173
+ /**
2174
+ * Build a map from field names to their formatted titles.
2175
+ * Used for formatting field name references within descriptions.
2176
+ */
2177
+ private getFieldNameToTitleMap;
2173
2178
  /**
2174
2179
  * Sort fields so that cached fields come first.
2175
2180
  * Uses stable sort to preserve relative order among cached and non-cached fields.