@shenghuabi/llama 1.0.3 → 1.0.5

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.
@@ -337,7 +337,6 @@ export declare class LlamaSwapService extends ExternalCallBaseService {
337
337
  repo?: string;
338
338
  token?: string;
339
339
  fileName?: string;
340
- vendor?: 'ollama';
341
340
  }, options?: {
342
341
  progressMessage?: DownloadFileOptions['message'];
343
342
  }): Promise<string | undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shenghuabi/llama",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "llama/ollama",
5
5
  "author": "wszgrcy",
6
6
  "sideEffects": false,
package/token.d.ts CHANGED
@@ -7,4 +7,3 @@ export interface LLamaConfig {
7
7
  cwd?: string;
8
8
  }
9
9
  export declare const LLamaConfigToken: InjectionToken<Signal<LLamaConfig>>;
10
- export declare const OLLAMA_MODEL_URL_TOKEN: InjectionToken<Signal<string>>;
@@ -1,4 +0,0 @@
1
- export declare function autoCheckVendor(repo: string, options: {
2
- endpoint: string;
3
- token?: string;
4
- }): Promise<"ollama" | undefined>;
@@ -1,7 +0,0 @@
1
- export declare function getOllamaGgufFile(name: string, options: {
2
- endpoint: string;
3
- token?: string;
4
- }): Promise<{
5
- fileList: string[];
6
- fileName: string;
7
- }>;