@@ -6,7 +6,7 @@ import { NoSuchProviderError } from './no-such-provider-error';
6
6
/**
7
7
Registry for managing models. It enables getting a model with a string id.
8
8
*/
9
- export type experimental_ModelRegistry = {
9
+ export type experimental_ProviderRegistry = {
10
10
/**
11
11
Returns the language model with the given id in the format `providerId:modelId`.
12
12
The model id is then passed to the provider function to get the model.
@@ -22,12 +22,17 @@ The model id is then passed to the provider function to get the model.
22
22
} ;
23
23
24
24
/**
25
- * Creates a model registry for the given providers .
25
+ * @deprecated Use `experimental_ProviderRegistry` instead .
26
26
*/
27
- export function experimental_createModelRegistry (
27
+ export type experimental_ModelRegistry = experimental_ProviderRegistry ;
28
+
29
+ /**
30
+ * Creates a registry for the given providers.
31
+ */
32
+ export function experimental_createProviderRegistry (
28
33
providers : Record < string , ( id : string ) => LanguageModel > ,
29
- ) : experimental_ModelRegistry {
30
- const registry = new DefaultModelRegistry ( ) ;
34
+ ) : experimental_ProviderRegistry {
35
+ const registry = new DefaultProviderRegistry ( ) ;
31
36
32
37
for ( const [ id , provider ] of Object . entries ( providers ) ) {
33
38
registry . registerLanguageModelProvider ( { id, provider } ) ;
@@ -36,7 +41,7 @@ export function experimental_createModelRegistry(
36
41
return registry ;
37
42
}
38
43
39
- class DefaultModelRegistry implements experimental_ModelRegistry {
44
+ class DefaultProviderRegistry implements experimental_ProviderRegistry {
40
45
// Mapping of provider id to provider
41
46
private providers : Record < string , ( id : string ) => LanguageModel > = { } ;
42
47
@@ -91,3 +96,9 @@ The model id is then passed to the provider function to get the model.
91
96
return model ;
92
97
}
93
98
}
99
+
100
+ /**
101
+ * @deprecated Use `experimental_createProviderRegistry` instead.
102
+ */
103
+ export const experimental_createModelRegistry =
104
+ experimental_createProviderRegistry ;
0 commit comments