Merge pull request #674 from transitive-bullshit/feature/update-oct-2024

old-agentic
Travis Fischer 2024-10-22 00:19:56 -05:00 zatwierdzone przez GitHub
commit 8992f9678d
53 zmienionych plików z 3060 dodań i 4337 usunięć

Wyświetl plik

@ -14,6 +14,7 @@ jobs:
- 20
- 21
- 22
- 23
steps:
- name: Checkout
@ -22,7 +23,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.7.0
version: 9.12.2
run_install: false
- name: Install Node.js

Wyświetl plik

@ -1,12 +1,13 @@
#!/usr/bin/env node
import 'dotenv/config'
import { openai } from '@ai-sdk/openai'
import { createOpenAI } from '@ai-sdk/openai'
import { Browserbase, BrowserbaseAISDK } from '@browserbasehq/sdk'
import { generateText } from 'ai'
async function main() {
const browserbase = new Browserbase()
const openai = createOpenAI({ compatibility: 'strict' })
const browserTool = BrowserbaseAISDK(browserbase, { textContent: true })
console.log(browserTool.parameters)

Wyświetl plik

@ -3,11 +3,12 @@ import 'dotenv/config'
import { createAISDKTools } from '@agentic/ai-sdk'
import { WeatherClient } from '@agentic/weather'
import { openai } from '@ai-sdk/openai'
import { createOpenAI } from '@ai-sdk/openai'
import { generateText } from 'ai'
async function main() {
const weather = new WeatherClient()
const openai = createOpenAI({ compatibility: 'strict' })
const result = await generateText({
model: openai('gpt-4o-mini'),

Wyświetl plik

@ -9,11 +9,10 @@
},
"dependencies": {
"@agentic/ai-sdk": "workspace:*",
"@agentic/core": "workspace:*",
"@agentic/weather": "workspace:*",
"@ai-sdk/openai": "^0.0.24",
"@ai-sdk/openai": "^0.0.68",
"@browserbasehq/sdk": "^1.4.2",
"ai": "^3.1.30",
"ai": "^3.4.16",
"openai": "^4.49.0",
"zod": "^3.23.8"
},

Wyświetl plik

@ -8,11 +8,10 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/genkit": "workspace:*",
"@agentic/stdlib": "workspace:*",
"@genkit-ai/ai": "^0.5.9",
"@genkit-ai/core": "^0.5.9",
"@genkit-ai/ai": "^0.5.16",
"@genkit-ai/core": "^0.5.16",
"genkitx-openai": "^0.10.0",
"zod": "^3.23.8"
},

Wyświetl plik

@ -8,12 +8,11 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/langchain": "workspace:*",
"@agentic/stdlib": "workspace:*",
"@langchain/core": "^0.2.20",
"@langchain/openai": "^0.2.5",
"langchain": "^0.2.12",
"@langchain/core": "^0.3.13",
"@langchain/openai": "^0.3.11",
"langchain": "^0.3.3",
"zod": "^3.23.8"
},
"devDependencies": {

Wyświetl plik

@ -11,7 +11,7 @@
"@agentic/core": "workspace:*",
"@agentic/llamaindex": "workspace:*",
"@agentic/stdlib": "workspace:*",
"llamaindex": "^0.5.13",
"llamaindex": "^0.7.3",
"zod": "^3.23.8"
},
"devDependencies": {

Wyświetl plik

@ -7,7 +7,7 @@
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git"
},
"packageManager": "pnpm@9.7.0",
"packageManager": "pnpm@9.12.2",
"engines": {
"node": ">=18"
},
@ -33,23 +33,23 @@
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@changesets/cli": "^2.27.9",
"@fisch0920/eslint-config": "^1.4.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^22.4.0",
"del-cli": "^5.1.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.7.6",
"del-cli": "^6.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"npm-run-all2": "^6.2.2",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all2": "^7.0.0",
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"turbo": "^2.0.14",
"typescript": "^5.5.4",
"vitest": "2.0.5",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"vitest": "2.1.3",
"zod": "^3.23.8"
},
"lint-staged": {
@ -57,10 +57,5 @@
"prettier --ignore-unknown --write",
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"esbuild": "^0.23.0"
}
}
}

Wyświetl plik

@ -31,12 +31,13 @@
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"ai": "^3.1.30"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*",
"ai": "^3.1.30"
},

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"@agentic/core": "workspace:*",
"mathjs": "^13.0.3"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -32,27 +32,26 @@
"test:unit": "vitest run"
},
"dependencies": {
"@sindresorhus/is": "^7.0.0",
"dedent": "^1.5.3",
"delay": "^6.0.0",
"hash-object": "^5.0.1",
"is-relative-url": "^4.0.0",
"jsonrepair": "^3.6.1",
"ky": "^1.5.0",
"jsonrepair": "^3.9.0",
"ky": "^1.7.2",
"normalize-url": "^8.0.1",
"openai-zod-to-json-schema": "^1.0.0",
"openai-zod-to-json-schema": "^1.0.3",
"p-map": "^7.0.2",
"p-throttle": "^6.1.0",
"p-throttle": "^6.2.0",
"quick-lru": "^7.0.0",
"type-fest": "^4.21.0",
"zod-validation-error": "^3.3.0"
"type-fest": "^4.26.1",
"zod-validation-error": "^3.4.0"
},
"peerDependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"openai-fetch": "^3.0.0"
"openai-fetch": "^3.3.1"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,6 +1,7 @@
import { isError } from '@sindresorhus/is'
function assertImpl(value: unknown, message?: string | Error): asserts value {
export function assert(
value: unknown,
message?: string | Error
): asserts value {
if (value) {
return
}
@ -9,22 +10,5 @@ function assertImpl(value: unknown, message?: string | Error): asserts value {
throw new Error('Assertion failed')
}
throw isError(message) ? message : new Error(message)
throw typeof message === 'string' ? new Error(message) : message
}
/**
* Assertion function that defaults to Node.js's `assert` module if it's
* available, with a basic backup if not.
*/
let assert: (value: unknown, message?: string | Error) => asserts value =
assertImpl
try {
// Default to the Node.js assert module if it's available
const assertImport = await import('node:assert')
if (assertImport?.default) {
assert = assertImport.default
}
} catch {}
export { assert }

Wyświetl plik

@ -15,5 +15,5 @@ export function extractObject<Result extends types.AIChainResult = string>(
args: ExtractObjectParams<Result>
): Promise<Result> {
const chain = createAIChain(args)
return chain()
return chain() as Promise<Result>
}

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,12 +31,13 @@
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"@dexaai/dexter": "^2.1.0"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*",
"@dexaai/dexter": "^2.1.0"
},

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -30,15 +30,16 @@
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"@e2b/code-interpreter": "^0.0.8",
"@e2b/code-interpreter": "^1.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*",
"@e2b/code-interpreter": "^0.0.8"
"@e2b/code-interpreter": "^1.0.2"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,5 +1,5 @@
import { createAIFunction, getEnv } from '@agentic/core'
import { CodeInterpreter, type ProcessMessage } from '@e2b/code-interpreter'
import { Sandbox } from '@e2b/code-interpreter'
import { z } from 'zod'
/**
@ -26,17 +26,17 @@ Execute python code in a Jupyter notebook cell and returns any result, stdout, s
})
},
async ({ code }) => {
const sandbox = await CodeInterpreter.create({
const sandbox = await Sandbox.create({
apiKey: getEnv('E2B_API_KEY')
})
try {
const exec = await sandbox.notebook.execCell(code, {
onStderr: (msg: ProcessMessage) => {
const exec = await sandbox.runCode(code, {
onStderr: (msg) => {
console.warn('[Code Interpreter stderr]', msg)
},
onStdout: (stdout: ProcessMessage) => {
onStdout: (stdout) => {
console.log('[Code Interpreter stdout]', stdout)
}
})
@ -48,7 +48,7 @@ Execute python code in a Jupyter notebook cell and returns any result, stdout, s
return exec.results.map((result) => result.toJSON())
} finally {
await sandbox.close()
await sandbox.kill()
}
}
)

Wyświetl plik

@ -1,5 +1,8 @@
{
"extends": "@agentic/tsconfig/base.json",
"compilerOptions": {
"noImplicitAny": false
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,15 @@
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"@genkit-ai/ai": "^0.5.9"
"@genkit-ai/ai": "^0.5.16"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*",
"@genkit-ai/ai": "^0.5.9"
"@genkit-ai/ai": "^0.5.16"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -0,0 +1,11 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
server: {
deps: {
inline: true
}
}
}
})

Wyświetl plik

@ -31,16 +31,15 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"octokit": "^4.0.2",
"p-throttle": "^6.1.0"
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,15 @@
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"@langchain/core": "^0.2.20"
"@langchain/core": "^0.3.13"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*",
"@langchain/core": "^0.2.20"
"@langchain/core": "^0.3.13"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -31,14 +31,15 @@
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"llamaindex": "^0.5.13"
"llamaindex": "^0.7.3"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*",
"llamaindex": "^0.5.13"
"llamaindex": "^0.7.3"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,16 +31,15 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/diffbot": "workspace:*",
"@agentic/serpapi": "workspace:*",
"p-map": "^7.0.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -35,6 +35,7 @@
"@agentic/bing": "workspace:*",
"@agentic/calculator": "workspace:*",
"@agentic/clearbit": "workspace:*",
"@agentic/core": "workspace:*",
"@agentic/dexa": "workspace:*",
"@agentic/dexter": "workspace:*",
"@agentic/diffbot": "workspace:*",
@ -68,14 +69,12 @@
"@agentic/wikidata": "workspace:*",
"@agentic/wikipedia": "workspace:*",
"@agentic/wolfram-alpha": "workspace:*",
"@e2b/code-interpreter": "^0.0.8"
"@e2b/code-interpreter": "^1.0.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,18 +31,17 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@nangohq/node": "^0.42.2",
"ky": "^1.5.0",
"p-throttle": "^6.1.0",
"ky": "^1.7.2",
"p-throttle": "^6.2.0",
"twitter-api-sdk": "^1.2.1",
"type-fest": "^4.21.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,16 +31,15 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0",
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0",
"wikibase-sdk": "^10.0.3"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,15 +31,14 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0",
"p-throttle": "^6.1.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2",
"p-throttle": "^6.2.0"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Wyświetl plik

@ -31,14 +31,13 @@
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"ky": "^1.5.0"
"@agentic/core": "workspace:*",
"ky": "^1.7.2"
},
"peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {

Plik diff jest za duży Load Diff