@worktango/ai-assistant 0.0.61-alpha03 → 0.0.61-alpha04

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 (2) hide show
  1. package/package.json +1 -1
  2. package/react.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worktango/ai-assistant",
3
- "version": "0.0.61-alpha03",
3
+ "version": "0.0.61-alpha04",
4
4
  "files": [
5
5
  "dist",
6
6
  "express.d.ts",
package/react.d.ts CHANGED
@@ -125,7 +125,7 @@ export const config: {
125
125
  /**
126
126
  * Get the URL for the LLM call.
127
127
  */
128
- getLlmCallUrl: () => string;
128
+ getLlmCallUrl: (path: string) => string;
129
129
  /**
130
130
  * Get the URL for the Kazoo service.
131
131
  */
@@ -145,7 +145,7 @@ export const config: {
145
145
  /**
146
146
  * Set the strategy for getting LLM call URLs.
147
147
  */
148
- setLlmCallUrlStrategy: (strategy: () => string) => void;
148
+ setLlmCallUrlStrategy: (strategy: (path: string) => string) => void;
149
149
  /**
150
150
  * Set the strategy for getting Pulse URLs.
151
151
  */