You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** @deprecated Use contextoverflow instead. Deprecated in extensions, removed in web. */
91
105
quotaoverflow: Event;
92
106
}
93
107
94
108
interfaceLanguageModelParams{
109
+
/** @deprecated Restricted to web extension contexts only. */
95
110
readonlydefaultTopK: number;
111
+
/** @deprecated Restricted to web extension contexts only. */
96
112
readonlymaxTopK: number;
113
+
/** @deprecated Restricted to web extension contexts only. */
97
114
readonlydefaultTemperature: number;
115
+
/** @deprecated Restricted to web extension contexts only. */
98
116
readonlymaxTemperature: number;
99
117
}
100
118
101
119
interfaceLanguageModelCreateCoreOptions{
120
+
/** @deprecated Restricted to web extension contexts only. Use the topK option within LanguageModel.create() is now restricted to web extensions. */
102
121
topK?: number;
122
+
/** @deprecated Restricted to web extension contexts only. Use the temperature option within LanguageModel.create() is now restricted to web extensions. */
0 commit comments