btca-server 1.0.91 → 1.0.92

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "btca-server",
3
- "version": "1.0.91",
3
+ "version": "1.0.92",
4
4
  "description": "BTCA server for answering questions about your codebase using OpenCode AI",
5
5
  "author": "Ben Davis",
6
6
  "license": "MIT",
@@ -7,7 +7,7 @@ const readEnv = (key: string) => {
7
7
  return value && value.trim().length > 0 ? value.trim() : undefined;
8
8
  };
9
9
 
10
- export const MINIMAX_MODELS = ['MiniMax-M2.1'] as const;
10
+ export const MINIMAX_MODELS = ['MiniMax-M2.1', 'MiniMax-M2.5'] as const;
11
11
 
12
12
  export type MinimaxModel = (typeof MINIMAX_MODELS)[number];
13
13