-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: WIP closer to completing monorepo transition
- Loading branch information
1 parent
9164ce1
commit ee1bf47
Showing
29 changed files
with
810 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,8 @@ | ||
{ | ||
"name": "agentic-examples-ai-sdk", | ||
"private": true, | ||
"description": "Examples of how to use the Agentic AI SDK.", | ||
"author": "Travis Fischer <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/transitive-bullshit/agentic.git" | ||
}, | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"preinstall": "npx only-allow pnpm", | ||
"build": "tsc", | ||
"clean": "del dist", | ||
"test": "run-s test:*", | ||
"test:lint": "eslint .", | ||
"test:typecheck": "tsc --noEmit" | ||
|
@@ -24,7 +14,6 @@ | |
"@ai-sdk/openai": "^0.0.24", | ||
"@browserbasehq/sdk": "^1.4.2", | ||
"ai": "^3.1.30", | ||
"dotenv": "^16.4.5", | ||
"openai": "^4.49.0", | ||
"zod": "^3.23.8" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
examples/dexter/code-interpreter.ts → examples/dexter/bin/code-interpreter.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 3 additions & 6 deletions
9
examples/dexter/election-news-chain.ts → examples/dexter/bin/election-news-chain.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
examples/dexter/election-news.ts → examples/dexter/bin/election-news.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
examples/dexter/extract-user.ts → examples/dexter/bin/extract-user.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "agentic-examples-dexter", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"test": "run-s test:*", | ||
"test:lint": "eslint .", | ||
"test:typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@agentic/core": "workspace:*", | ||
"@agentic/dexter": "workspace:*", | ||
"@agentic/diffbot": "workspace:*", | ||
"@agentic/e2b": "workspace:*", | ||
"@agentic/perigon": "workspace:*", | ||
"@agentic/search-and-crawl": "workspace:*", | ||
"@agentic/serpapi": "workspace:*", | ||
"@agentic/serper": "workspace:*", | ||
"@agentic/weather": "workspace:*", | ||
"@dexaai/dexter": "^2.1.0", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@agentic/tsconfig": "workspace:*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"extends": "@agentic/tsconfig/base.json", | ||
"include": ["bin"], | ||
"exclude": ["node_modules", "dist"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "agentic-examples-genkit", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"test": "run-s test:*", | ||
"test:lint": "eslint .", | ||
"test:typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@agentic/ai-sdk": "workspace:*", | ||
"@agentic/core": "workspace:*", | ||
"@agentic/genkit": "workspace:*", | ||
"@agentic/weather": "workspace:*", | ||
"@genkit-ai/ai": "^0.5.9", | ||
"@genkit-ai/core": "^0.5.9", | ||
"genkitx-openai": "^0.10.0", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@agentic/tsconfig": "workspace:*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"extends": "@agentic/tsconfig/base.json", | ||
"include": ["bin"], | ||
"exclude": ["node_modules", "dist"] | ||
} |
4 changes: 2 additions & 2 deletions
4
examples/langchain/weather.ts → examples/langchain/bin/weather.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "agentic-examples-langchain", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"test": "run-s test:*", | ||
"test:lint": "eslint .", | ||
"test:typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@agentic/core": "workspace:*", | ||
"@agentic/langchain": "workspace:*", | ||
"@agentic/weather": "workspace:*", | ||
"@langchain/core": "^0.2.20", | ||
"@langchain/openai": "^0.2.5", | ||
"langchain": "^0.2.12", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@agentic/tsconfig": "workspace:*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"extends": "@agentic/tsconfig/base.json", | ||
"include": ["bin"], | ||
"exclude": ["node_modules", "dist"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "agentic-examples-llamaindex", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"test": "run-s test:*", | ||
"test:lint": "eslint .", | ||
"test:typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@agentic/core": "workspace:*", | ||
"@agentic/llamaindex": "workspace:*", | ||
"@agentic/weather": "workspace:*", | ||
"llamaindex": "^0.5.13", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@agentic/tsconfig": "workspace:*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"extends": "@agentic/tsconfig/base.json", | ||
"include": ["bin"], | ||
"exclude": ["node_modules", "dist"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "agentic-examples-openai", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"test": "run-s test:*", | ||
"test:lint": "eslint .", | ||
"test:typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@agentic/core": "workspace:*", | ||
"@agentic/weather": "workspace:*", | ||
"openai": "^4.49.0", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@agentic/tsconfig": "workspace:*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"extends": "@agentic/tsconfig/base.json", | ||
"include": ["bin"], | ||
"exclude": ["node_modules", "dist"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"name": "@agentic/search-and-crawl", | ||
"version": "6.6.1", | ||
"description": "Agentic SDK for Google search and crawling the top results.", | ||
"author": "Travis Fischer <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/transitive-bullshit/agentic.git" | ||
}, | ||
"type": "module", | ||
"source": "./src/index.ts", | ||
"types": "./dist/index.d.ts", | ||
"sideEffects": false, | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.js", | ||
"default": "./dist/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "tsup", | ||
"dev": "tsup --watch", | ||
"clean": "del dist", | ||
"test": "run-s test:*", | ||
"test:lint": "eslint .", | ||
"test:typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@agentic/diffbot": "workspace:*", | ||
"@agentic/serpapi": "workspace:*", | ||
"p-map": "^7.0.2" | ||
}, | ||
"peerDependencies": { | ||
"@agentic/core": "workspace:*", | ||
"zod": "^3.23.3" | ||
}, | ||
"devDependencies": { | ||
"@agentic/core": "workspace:*", | ||
"@agentic/tsconfig": "workspace:*" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './search-and-crawl' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"extends": "@agentic/tsconfig/base.json", | ||
"include": ["src"], | ||
"exclude": ["node_modules", "dist"] | ||
} |
Oops, something went wrong.