utilitas 1999.1.83 → 1999.1.84

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/lib/alan.mjs CHANGED
@@ -436,7 +436,7 @@ const init = async (options = {}) => {
436
436
  process.env['GOOGLE_APPLICATION_CREDENTIALS'] = options.credentials;
437
437
  var { GoogleGenAI } = await need('@google/genai');
438
438
  var client = new GoogleGenAI({
439
- vertexai: true, location: 'us-east5', ...options
439
+ vertexai: true, location: 'global', ...options
440
440
  });
441
441
  for (let model of models) {
442
442
  setupAi({
@@ -463,7 +463,7 @@ const init = async (options = {}) => {
463
463
  var model = models[0];
464
464
  var client = new ((
465
465
  await need('@anthropic-ai/vertex-sdk', { raw: true })
466
- ).AnthropicVertex)({ region: options?.region || 'us-east5' });
466
+ ).AnthropicVertex)({ region: options?.region || 'global' });
467
467
  setupAi({ provider, model, client, prompt: promptAnthropic });
468
468
  break;
469
469
  case JINA:
package/lib/manifest.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  const manifest = {
2
2
  "name": "utilitas",
3
3
  "description": "Just another common utility for JavaScript.",
4
- "version": "1999.1.83",
4
+ "version": "1999.1.84",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/utilitas",
7
7
  "main": "index.mjs",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "utilitas",
3
3
  "description": "Just another common utility for JavaScript.",
4
- "version": "1999.1.83",
4
+ "version": "1999.1.84",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/utilitas",
7
7
  "main": "index.mjs",