@breadstone/archipel-mcp 0.0.50 → 0.0.51

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 (49) hide show
  1. package/data/packages/platform-bootstrap/api/Class.CompositionContext.md +8 -8
  2. package/data/packages/platform-bootstrap/api/Class.CompositionModule.md +1 -1
  3. package/data/packages/platform-bootstrap/api/Class.CompositionResolver.md +7 -7
  4. package/data/packages/platform-bootstrap/api/Function.createCompositionContext.md +1 -1
  5. package/data/packages/platform-bootstrap/api/Interface.ICompositionContext.md +7 -7
  6. package/data/packages/platform-bootstrap/api/Interface.ICreateCompositionContextOptions.md +3 -3
  7. package/data/packages/platform-bootstrap/api/Interface.IProviderDecision.md +3 -3
  8. package/data/packages/platform-bootstrap/api/TypeAlias.CompositionImport.md +1 -1
  9. package/data/packages/platform-bootstrap/api/TypeAlias.ProviderComposer.md +1 -1
  10. package/data/packages/platform-intelligence/api/Class.IntelligenceAgentFactory.md +64 -0
  11. package/data/packages/platform-intelligence/api/Class.IntelligenceEmbeddingGenerator.md +70 -0
  12. package/data/packages/platform-intelligence/api/Class.IntelligenceMediaGenerator.md +118 -0
  13. package/data/packages/platform-intelligence/api/Class.IntelligenceModule.md +2 -2
  14. package/data/packages/platform-intelligence/api/Class.IntelligenceProviderAssetUploader.md +70 -0
  15. package/data/packages/platform-intelligence/api/Class.IntelligenceStructuredGenerator.md +70 -0
  16. package/data/packages/platform-intelligence/api/Class.IntelligenceTelemetryRegistry.md +44 -0
  17. package/data/packages/platform-intelligence/api/Class.IntelligenceTextGenerator.md +8 -8
  18. package/data/packages/platform-intelligence/api/Function.createAnthropicBash20241022Tool.md +1 -1
  19. package/data/packages/platform-intelligence/api/Function.createAnthropicBash20250124Tool.md +1 -1
  20. package/data/packages/platform-intelligence/api/Function.createIntelligenceTool.md +1 -1
  21. package/data/packages/platform-intelligence/api/Function.createMimoCustomTool.md +30 -0
  22. package/data/packages/platform-intelligence/api/Function.createOpenAICustomTool.md +5 -5
  23. package/data/packages/platform-intelligence/api/Function.loadAnthropicLanguageModel.md +2 -2
  24. package/data/packages/platform-intelligence/api/Function.loadGoogleLanguageModel.md +2 -2
  25. package/data/packages/platform-intelligence/api/Function.loadGrokLanguageModel.md +2 -2
  26. package/data/packages/platform-intelligence/api/Function.loadMimoLanguageModel.md +26 -0
  27. package/data/packages/platform-intelligence/api/Function.loadOpenAILanguageModel.md +2 -2
  28. package/data/packages/platform-intelligence/api/Interface.IIntelligenceCompletionUsage.md +9 -9
  29. package/data/packages/platform-intelligence/api/Interface.IIntelligenceTextCompletion.md +92 -8
  30. package/data/packages/platform-intelligence/api/Interface.IIntelligenceTextGenerationOptions.md +7 -23
  31. package/data/packages/platform-intelligence/api/Interface.IIntelligenceTextGenerator.md +2 -2
  32. package/data/packages/platform-intelligence/api/Interface.IIntelligenceTextStreamingOptions.md +23 -36
  33. package/data/packages/platform-intelligence/api/Interface.IIntelligenceTool.md +1 -1
  34. package/data/packages/platform-intelligence/api/TypeAlias.IntelligenceLanguageModelLoader.md +2 -2
  35. package/data/packages/platform-intelligence/api/TypeAlias.IntelligenceProviderName.md +1 -1
  36. package/data/packages/platform-intelligence/api/Variable.INTELLIGENCE_API_KEY.md +1 -1
  37. package/data/packages/platform-intelligence/api/Variable.INTELLIGENCE_BASE_URL.md +1 -1
  38. package/data/packages/platform-intelligence/api/Variable.INTELLIGENCE_MAX_OUTPUT_TOKENS.md +1 -1
  39. package/data/packages/platform-intelligence/api/Variable.INTELLIGENCE_MODEL.md +1 -1
  40. package/data/packages/platform-intelligence/api/Variable.INTELLIGENCE_PROVIDER.md +2 -2
  41. package/data/packages/platform-intelligence/api/Variable.INTELLIGENCE_TEMPERATURE.md +1 -1
  42. package/data/packages/platform-intelligence/api/Variable.INTELLIGENCE_TOP_P.md +1 -1
  43. package/data/packages/platform-intelligence/api/Variable.IntelligenceProviderNames.md +2 -0
  44. package/data/packages/platform-intelligence/api/Variable.MIMO_API_KEY.md +14 -0
  45. package/data/packages/platform-intelligence/api/Variable.MIMO_BASE_URL.md +14 -0
  46. package/data/packages/platform-intelligence/api/Variable.MIMO_CONFIG_ENTRIES.md +14 -0
  47. package/data/packages/platform-intelligence/api/Variable.PLATFORM_INTELLIGENCE_CONFIG_ENTRIES.md +1 -1
  48. package/data/packages/platform-intelligence/api/index.md +12 -1
  49. package/package.json +1 -1
@@ -5,7 +5,7 @@ editUrl: false
5
5
  ---
6
6
  # Interface: IIntelligenceTextStreamingOptions
7
7
 
8
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:44](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L44)
8
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:34](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L34)
9
9
 
10
10
  Options that can be supplied when streaming text with the intelligence provider.
11
11
 
@@ -21,7 +21,7 @@ Options that can be supplied when streaming text with the intelligence provider.
21
21
  readonly optional activeTools?: string[];
22
22
  ```
23
23
 
24
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:116](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L116)
24
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:98](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L98)
25
25
 
26
26
  Optional list of tool names available to the model for this request.
27
27
 
@@ -33,7 +33,7 @@ Optional list of tool names available to the model for this request.
33
33
  readonly optional maxOutputTokens?: number;
34
34
  ```
35
35
 
36
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:73](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L73)
36
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:63](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L63)
37
37
 
38
38
  Optional maximum output tokens override.
39
39
 
@@ -45,7 +45,7 @@ Optional maximum output tokens override.
45
45
  readonly optional model?: LanguageModel;
46
46
  ```
47
47
 
48
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:52](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L52)
48
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:42](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L42)
49
49
 
50
50
  Optional per-request AI SDK model override.
51
51
 
@@ -57,43 +57,43 @@ Optional per-request AI SDK model override.
57
57
  readonly optional onChunk?: StreamTextOnChunkCallback<ToolSet>;
58
58
  ```
59
59
 
60
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:123](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L123)
60
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:105](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L105)
61
61
 
62
62
  Optional callback invoked for every emitted stream chunk.
63
63
 
64
64
  ***
65
65
 
66
- ### onError?
66
+ ### onEnd?
67
67
 
68
68
  ```ts
69
- readonly optional onError?: StreamTextOnErrorCallback;
69
+ readonly optional onEnd?: GenerateTextOnEndCallback<NoInfer<ToolSet>, NoInfer<Context>>;
70
70
  ```
71
71
 
72
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:144](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L144)
72
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:119](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L119)
73
73
 
74
- Optional callback invoked when streaming fails.
74
+ Optional callback invoked when the full stream finishes.
75
75
 
76
76
  ***
77
77
 
78
- ### onFinish?
78
+ ### onError?
79
79
 
80
80
  ```ts
81
- readonly optional onFinish?: StreamTextOnFinishCallback<ToolSet>;
81
+ readonly optional onError?: StreamTextOnErrorCallback;
82
82
  ```
83
83
 
84
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:137](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L137)
84
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:126](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L126)
85
85
 
86
- Optional callback invoked when the full stream finishes.
86
+ Optional callback invoked when streaming fails.
87
87
 
88
88
  ***
89
89
 
90
- ### onStepFinish?
90
+ ### onStepEnd?
91
91
 
92
92
  ```ts
93
- readonly optional onStepFinish?: StreamTextOnStepFinishCallback<ToolSet>;
93
+ readonly optional onStepEnd?: GenerateTextOnStepEndCallback<NoInfer<ToolSet>, NoInfer<Context>>;
94
94
  ```
95
95
 
96
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:130](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L130)
96
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:112](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L112)
97
97
 
98
98
  Optional callback invoked when a stream step completes.
99
99
 
@@ -105,7 +105,7 @@ Optional callback invoked when a stream step completes.
105
105
  readonly optional stopWhen?: StopCondition<ToolSet> | StopCondition<ToolSet>[];
106
106
  ```
107
107
 
108
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:109](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L109)
108
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:91](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L91)
109
109
 
110
110
  Optional AI SDK stop condition for multi-step tool execution.
111
111
 
@@ -117,7 +117,7 @@ Optional AI SDK stop condition for multi-step tool execution.
117
117
  readonly optional temperature?: number;
118
118
  ```
119
119
 
120
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:59](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L59)
120
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:49](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L49)
121
121
 
122
122
  Optional sampling temperature override.
123
123
 
@@ -126,35 +126,22 @@ Optional sampling temperature override.
126
126
  ### timeout?
127
127
 
128
128
  ```ts
129
- readonly optional timeout?: TimeoutConfiguration;
129
+ readonly optional timeout?: TimeoutConfiguration<ToolSet>;
130
130
  ```
131
131
 
132
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:80](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L80)
132
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:70](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L70)
133
133
 
134
134
  Native AI SDK timeout configuration.
135
135
 
136
136
  ***
137
137
 
138
- ### timeoutMs?
139
-
140
- ```ts
141
- readonly optional timeoutMs?: number;
142
- ```
143
-
144
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:88](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L88)
145
-
146
- Optional timeout in milliseconds for the LLM request.
147
- Defaults to 30000 (30 seconds) if not specified.
148
-
149
- ***
150
-
151
138
  ### toolChoice?
152
139
 
153
140
  ```ts
154
141
  readonly optional toolChoice?: ToolChoice<ToolSet>;
155
142
  ```
156
143
 
157
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:102](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L102)
144
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:84](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L84)
158
145
 
159
146
  Optional AI SDK tool choice strategy.
160
147
 
@@ -166,7 +153,7 @@ Optional AI SDK tool choice strategy.
166
153
  readonly optional tools?: ToolSet;
167
154
  ```
168
155
 
169
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:95](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L95)
156
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:77](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L77)
170
157
 
171
158
  Optional AI SDK tools available for this streaming request.
172
159
 
@@ -178,6 +165,6 @@ Optional AI SDK tools available for this streaming request.
178
165
  readonly optional topP?: number;
179
166
  ```
180
167
 
181
- Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:66](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L66)
168
+ Defined in: [contracts/IIntelligenceTextStreamingOptions.ts:56](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IIntelligenceTextStreamingOptions.ts#L56)
182
169
 
183
170
  Optional top-p (nucleus) sampling override.
@@ -26,7 +26,7 @@ Gets the unique registry name for the tool.
26
26
  ### tool
27
27
 
28
28
  ```ts
29
- readonly tool: Tool<never, never> | Tool<any, any> | Tool<any, never> | Tool<never, any> & Pick<Tool<any, any>,
29
+ readonly tool: Tool<never, never, any> | Tool<any, any, any> | Tool<any, never, any> | Tool<never, any, any> & Pick<Tool<any, any, any>,
30
30
  | "execute"
31
31
  | "needsApproval"
32
32
  | "onInputStart"
@@ -6,7 +6,7 @@ editUrl: false
6
6
  # Type Alias: IntelligenceLanguageModelLoader
7
7
 
8
8
  ```ts
9
- type IntelligenceLanguageModelLoader = (configuration) => LanguageModelV3;
9
+ type IntelligenceLanguageModelLoader = (configuration) => LanguageModelV4;
10
10
  ```
11
11
 
12
12
  Defined in: [providers/IntelligenceLanguageModelLoader.ts:13](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/providers/IntelligenceLanguageModelLoader.ts#L13)
@@ -21,4 +21,4 @@ Represents a factory responsible for creating a configured language model instan
21
21
 
22
22
  ## Returns
23
23
 
24
- `LanguageModelV3`
24
+ `LanguageModelV4`
@@ -9,6 +9,6 @@ editUrl: false
9
9
  type IntelligenceProviderName = typeof IntelligenceProviderNames[keyof typeof IntelligenceProviderNames];
10
10
  ```
11
11
 
12
- Defined in: [contracts/IntelligenceProviderNames.ts:18](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IntelligenceProviderNames.ts#L18)
12
+ Defined in: [contracts/IntelligenceProviderNames.ts:19](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IntelligenceProviderNames.ts#L19)
13
13
 
14
14
  Represents the union of supported intelligence provider identifiers.
@@ -9,6 +9,6 @@ editUrl: false
9
9
  const INTELLIGENCE_API_KEY: IConfigKey<string>;
10
10
  ```
11
11
 
12
- Defined in: [env.ts:40](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L40)
12
+ Defined in: [env.ts:42](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L42)
13
13
 
14
14
  Global API key override for the intelligence provider.
@@ -9,6 +9,6 @@ editUrl: false
9
9
  const INTELLIGENCE_BASE_URL: IConfigKey<string>;
10
10
  ```
11
11
 
12
- Defined in: [env.ts:43](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L43)
12
+ Defined in: [env.ts:45](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L45)
13
13
 
14
14
  Global base URL override for the intelligence provider.
@@ -9,6 +9,6 @@ editUrl: false
9
9
  const INTELLIGENCE_MAX_OUTPUT_TOKENS: IConfigKey<number>;
10
10
  ```
11
11
 
12
- Defined in: [env.ts:34](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L34)
12
+ Defined in: [env.ts:36](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L36)
13
13
 
14
14
  Maximum number of output tokens for the AI model.
@@ -9,6 +9,6 @@ editUrl: false
9
9
  const INTELLIGENCE_MODEL: IConfigKey<string>;
10
10
  ```
11
11
 
12
- Defined in: [env.ts:25](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L25)
12
+ Defined in: [env.ts:27](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L27)
13
13
 
14
14
  AI model identifier to use for text generation.
@@ -9,6 +9,6 @@ editUrl: false
9
9
  const INTELLIGENCE_PROVIDER: IConfigKey<string>;
10
10
  ```
11
11
 
12
- Defined in: [env.ts:37](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L37)
12
+ Defined in: [env.ts:39](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L39)
13
13
 
14
- Intelligence provider name (e.g. openai, anthropic, google, grok).
14
+ Intelligence provider name (e.g. openai, anthropic, google, grok, mimo).
@@ -9,6 +9,6 @@ editUrl: false
9
9
  const INTELLIGENCE_TEMPERATURE: IConfigKey<number>;
10
10
  ```
11
11
 
12
- Defined in: [env.ts:28](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L28)
12
+ Defined in: [env.ts:30](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L30)
13
13
 
14
14
  Sampling temperature for the AI model.
@@ -9,6 +9,6 @@ editUrl: false
9
9
  const INTELLIGENCE_TOP_P: IConfigKey<number>;
10
10
  ```
11
11
 
12
- Defined in: [env.ts:31](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L31)
12
+ Defined in: [env.ts:33](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L33)
13
13
 
14
14
  Top-p (nucleus sampling) for the AI model.
@@ -10,6 +10,7 @@ const IntelligenceProviderNames: {
10
10
  Anthropic: "anthropic";
11
11
  Google: "google";
12
12
  Grok: "grok";
13
+ MiMo: "mimo";
13
14
  OpenAI: "openai";
14
15
  };
15
16
  ```
@@ -25,4 +26,5 @@ Enumerates the supported model providers powering the intelligence pipeline.
25
26
  | <a id="property-anthropic"></a> `Anthropic` | `"anthropic"` | `'anthropic'` | [contracts/IntelligenceProviderNames.ts:8](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IntelligenceProviderNames.ts#L8) |
26
27
  | <a id="property-google"></a> `Google` | `"google"` | `'google'` | [contracts/IntelligenceProviderNames.ts:9](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IntelligenceProviderNames.ts#L9) |
27
28
  | <a id="property-grok"></a> `Grok` | `"grok"` | `'grok'` | [contracts/IntelligenceProviderNames.ts:10](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IntelligenceProviderNames.ts#L10) |
29
+ | <a id="property-mimo"></a> `MiMo` | `"mimo"` | `'mimo'` | [contracts/IntelligenceProviderNames.ts:11](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IntelligenceProviderNames.ts#L11) |
28
30
  | <a id="property-openai"></a> `OpenAI` | `"openai"` | `'openai'` | [contracts/IntelligenceProviderNames.ts:7](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/contracts/IntelligenceProviderNames.ts#L7) |
@@ -0,0 +1,14 @@
1
+ ---
2
+ title: 'Variable: MIMO\_API\_KEY'
3
+ generated: true
4
+ editUrl: false
5
+ ---
6
+ # Variable: MIMO\_API\_KEY
7
+
8
+ ```ts
9
+ const MIMO_API_KEY: IConfigKey<string>;
10
+ ```
11
+
12
+ Defined in: providers/mimo/env.ts:10
13
+
14
+ MiMo-specific API key.
@@ -0,0 +1,14 @@
1
+ ---
2
+ title: 'Variable: MIMO\_BASE\_URL'
3
+ generated: true
4
+ editUrl: false
5
+ ---
6
+ # Variable: MIMO\_BASE\_URL
7
+
8
+ ```ts
9
+ const MIMO_BASE_URL: IConfigKey<string>;
10
+ ```
11
+
12
+ Defined in: providers/mimo/env.ts:13
13
+
14
+ MiMo-specific base URL.
@@ -0,0 +1,14 @@
1
+ ---
2
+ title: 'Variable: MIMO\_CONFIG\_ENTRIES'
3
+ generated: true
4
+ editUrl: false
5
+ ---
6
+ # Variable: MIMO\_CONFIG\_ENTRIES
7
+
8
+ ```ts
9
+ const MIMO_CONFIG_ENTRIES: ReadonlyArray<Omit<IConfigRegistryEntry, "module">>;
10
+ ```
11
+
12
+ Defined in: providers/mimo/env.ts:16
13
+
14
+ Configuration entries used by the MiMo intelligence provider.
@@ -9,6 +9,6 @@ editUrl: false
9
9
  const PLATFORM_INTELLIGENCE_CONFIG_ENTRIES: ReadonlyArray<Omit<IConfigRegistryEntry, "module">>;
10
10
  ```
11
11
 
12
- Defined in: [env.ts:50](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L50)
12
+ Defined in: [env.ts:52](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-intelligence/src/env.ts#L52)
13
13
 
14
14
  All configuration entries required by `platform-intelligence`.
@@ -9,10 +9,16 @@ editUrl: false
9
9
 
10
10
  | Class | Description |
11
11
  | ------ | ------ |
12
+ | [IntelligenceAgentFactory](Class.IntelligenceAgentFactory) | Creates AI SDK 7 tool-loop agents with platform-registered tools merged in. |
12
13
  | [IntelligenceConfigurationError](Class.IntelligenceConfigurationError) | Error thrown when an intelligence provider configuration is invalid or missing. |
14
+ | [IntelligenceEmbeddingGenerator](Class.IntelligenceEmbeddingGenerator) | Executes AI SDK embedding operations. |
13
15
  | [IntelligenceHealthIndicator](Class.IntelligenceHealthIndicator) | Health indicator for the intelligence infrastructure. Verifies that the intelligence provider configuration can be resolved. |
16
+ | [IntelligenceMediaGenerator](Class.IntelligenceMediaGenerator) | Executes AI SDK media generation and understanding operations. |
14
17
  | [IntelligenceModule](Class.IntelligenceModule) | Core module exposing the shared intelligence infrastructure. |
18
+ | [IntelligenceProviderAssetUploader](Class.IntelligenceProviderAssetUploader) | Uploads provider-managed files and skills for reuse in AI SDK calls. |
15
19
  | [IntelligenceProviderError](Class.IntelligenceProviderError) | Error thrown when an intelligence provider call fails. |
20
+ | [IntelligenceStructuredGenerator](Class.IntelligenceStructuredGenerator) | Executes AI SDK structured-output generation. |
21
+ | [IntelligenceTelemetryRegistry](Class.IntelligenceTelemetryRegistry) | Registers AI SDK telemetry integrations for the current process. |
16
22
  | [IntelligenceTextGenerator](Class.IntelligenceTextGenerator) | Executes text completions using the configured intelligence provider. |
17
23
  | [IntelligenceToolBase](Class.IntelligenceToolBase) | Base class for class-based AI SDK tools. |
18
24
  | [IntelligenceToolRegistry](Class.IntelligenceToolRegistry) | Registry for class-based intelligence tools. |
@@ -62,10 +68,13 @@ editUrl: false
62
68
  | [INTELLIGENCE\_BASE\_URL](Variable.INTELLIGENCE_BASE_URL) | Global base URL override for the intelligence provider. |
63
69
  | [INTELLIGENCE\_MAX\_OUTPUT\_TOKENS](Variable.INTELLIGENCE_MAX_OUTPUT_TOKENS) | Maximum number of output tokens for the AI model. |
64
70
  | [INTELLIGENCE\_MODEL](Variable.INTELLIGENCE_MODEL) | AI model identifier to use for text generation. |
65
- | [INTELLIGENCE\_PROVIDER](Variable.INTELLIGENCE_PROVIDER) | Intelligence provider name (e.g. openai, anthropic, google, grok). |
71
+ | [INTELLIGENCE\_PROVIDER](Variable.INTELLIGENCE_PROVIDER) | Intelligence provider name (e.g. openai, anthropic, google, grok, mimo). |
66
72
  | [INTELLIGENCE\_TEMPERATURE](Variable.INTELLIGENCE_TEMPERATURE) | Sampling temperature for the AI model. |
67
73
  | [INTELLIGENCE\_TOP\_P](Variable.INTELLIGENCE_TOP_P) | Top-p (nucleus sampling) for the AI model. |
68
74
  | [IntelligenceProviderNames](Variable.IntelligenceProviderNames) | Enumerates the supported model providers powering the intelligence pipeline. |
75
+ | [MIMO\_API\_KEY](Variable.MIMO_API_KEY) | MiMo-specific API key. |
76
+ | [MIMO\_BASE\_URL](Variable.MIMO_BASE_URL) | MiMo-specific base URL. |
77
+ | [MIMO\_CONFIG\_ENTRIES](Variable.MIMO_CONFIG_ENTRIES) | Configuration entries used by the MiMo intelligence provider. |
69
78
  | [OPENAI\_API\_KEY](Variable.OPENAI_API_KEY) | OpenAI-specific API key. |
70
79
  | [OPENAI\_BASE\_URL](Variable.OPENAI_BASE_URL) | OpenAI-specific base URL. |
71
80
  | [OPENAI\_CONFIG\_ENTRIES](Variable.OPENAI_CONFIG_ENTRIES) | Configuration entries used by the OpenAI intelligence provider. |
@@ -113,6 +122,7 @@ editUrl: false
113
122
  | [createGrokWebSearchTool](Function.createGrokWebSearchTool) | Creates a Grok web-search tool registration. |
114
123
  | [createGrokXSearchTool](Function.createGrokXSearchTool) | Creates a Grok X-search tool registration. |
115
124
  | [createIntelligenceTool](Function.createIntelligenceTool) | Adapts a native AI SDK tool to the Archipel intelligence tool schema. |
125
+ | [createMimoCustomTool](Function.createMimoCustomTool) | Creates a MiMo function tool registration. |
116
126
  | [createOpenAIApplyPatchTool](Function.createOpenAIApplyPatchTool) | Creates an OpenAI apply-patch tool registration. |
117
127
  | [createOpenAICodeInterpreterTool](Function.createOpenAICodeInterpreterTool) | Creates an OpenAI code-interpreter tool registration. |
118
128
  | [createOpenAICustomTool](Function.createOpenAICustomTool) | Creates an OpenAI custom provider-defined tool registration. |
@@ -128,4 +138,5 @@ editUrl: false
128
138
  | [loadAnthropicLanguageModel](Function.loadAnthropicLanguageModel) | Creates the Anthropic language model from the resolved provider configuration. |
129
139
  | [loadGoogleLanguageModel](Function.loadGoogleLanguageModel) | Creates the Google Gemini language model from the resolved provider configuration. |
130
140
  | [loadGrokLanguageModel](Function.loadGrokLanguageModel) | Creates the Grok language model through the native xAI provider. |
141
+ | [loadMimoLanguageModel](Function.loadMimoLanguageModel) | Creates the Xiaomi MiMo language model from the resolved provider configuration. |
131
142
  | [loadOpenAILanguageModel](Function.loadOpenAILanguageModel) | Creates the OpenAI language model from the resolved provider configuration. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/archipel-mcp",
3
- "version": "0.0.50",
3
+ "version": "0.0.51",
4
4
  "description": "MCP server providing Archipel platform knowledge - documentation, query patterns, and coding conventions - to AI development tools.",
5
5
  "type": "commonjs",
6
6
  "main": "./src/main.js",