@sekuire/sdk 0.1.24 → 0.1.25
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/dist/index.d.ts +2 -0
- package/dist/index.esm.js +19185 -116
- package/dist/index.js +19191 -122
- package/dist/llm/google.d.ts +2 -0
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -2204,6 +2204,8 @@ declare class GoogleProvider extends BaseLLMProvider {
|
|
|
2204
2204
|
chatStream(messages: Message[], options?: ChatOptions): AsyncGenerator<ChatChunk>;
|
|
2205
2205
|
getProviderName(): string;
|
|
2206
2206
|
protected getMaxTokensForModel(model: string): number;
|
|
2207
|
+
private buildTools;
|
|
2208
|
+
private buildHistory;
|
|
2207
2209
|
}
|
|
2208
2210
|
|
|
2209
2211
|
declare class OllamaProvider extends BaseLLMProvider {
|