@sentry/junior 0.15.1 → 0.15.2
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/app.js +11 -2
- package/package.json +1 -1
package/dist/app.js
CHANGED
|
@@ -2058,9 +2058,18 @@ function getChannelConfigurationService(thread) {
|
|
|
2058
2058
|
import {
|
|
2059
2059
|
completeSimple,
|
|
2060
2060
|
getEnvApiKey,
|
|
2061
|
-
getModels
|
|
2061
|
+
getModels,
|
|
2062
|
+
registerApiProvider
|
|
2062
2063
|
} from "@mariozechner/pi-ai";
|
|
2063
|
-
import
|
|
2064
|
+
import {
|
|
2065
|
+
streamAnthropic,
|
|
2066
|
+
streamSimpleAnthropic
|
|
2067
|
+
} from "@mariozechner/pi-ai/anthropic";
|
|
2068
|
+
registerApiProvider({
|
|
2069
|
+
api: "anthropic-messages",
|
|
2070
|
+
stream: streamAnthropic,
|
|
2071
|
+
streamSimple: streamSimpleAnthropic
|
|
2072
|
+
});
|
|
2064
2073
|
var GATEWAY_PROVIDER = "vercel-ai-gateway";
|
|
2065
2074
|
var GEN_AI_PROVIDER_NAME = GATEWAY_PROVIDER;
|
|
2066
2075
|
var GEN_AI_OPERATION_CHAT = "chat";
|