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 - 20
- 21 - 21
- 22 - 22
- 23
steps: steps:
- name: Checkout - name: Checkout
@ -22,7 +23,7 @@ jobs:
- name: Install pnpm - name: Install pnpm
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4
with: with:
version: 9.7.0 version: 9.12.2
run_install: false run_install: false
- name: Install Node.js - name: Install Node.js

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

@ -1,6 +1,7 @@
import { isError } from '@sindresorhus/is' export function assert(
value: unknown,
function assertImpl(value: unknown, message?: string | Error): asserts value { message?: string | Error
): asserts value {
if (value) { if (value) {
return return
} }
@ -9,22 +10,5 @@ function assertImpl(value: unknown, message?: string | Error): asserts value {
throw new Error('Assertion failed') 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> args: ExtractObjectParams<Result>
): Promise<Result> { ): Promise<Result> {
const chain = createAIChain(args) const chain = createAIChain(args)
return chain() return chain() as Promise<Result>
} }

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

@ -31,14 +31,15 @@
"test:typecheck": "tsc --noEmit", "test:typecheck": "tsc --noEmit",
"test:unit": "vitest run" "test:unit": "vitest run"
}, },
"dependencies": {
"@agentic/core": "workspace:*"
},
"peerDependencies": { "peerDependencies": {
"@agentic/core": "workspace:*", "@genkit-ai/ai": "^0.5.16"
"@genkit-ai/ai": "^0.5.9"
}, },
"devDependencies": { "devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*", "@agentic/tsconfig": "workspace:*",
"@genkit-ai/ai": "^0.5.9" "@genkit-ai/ai": "^0.5.16"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "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" "test:typecheck": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"ky": "^1.5.0", "@agentic/core": "workspace:*",
"ky": "^1.7.2",
"octokit": "^4.0.2", "octokit": "^4.0.2",
"p-throttle": "^6.1.0" "p-throttle": "^6.2.0"
}, },
"peerDependencies": { "peerDependencies": {
"@agentic/core": "workspace:*",
"zod": "^3.23.8" "zod": "^3.23.8"
}, },
"devDependencies": { "devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*" "@agentic/tsconfig": "workspace:*"
}, },
"publishConfig": { "publishConfig": {

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Plik diff jest za duży Load Diff