-
-
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: add @agentic/stdlib convenience package
- Loading branch information
1 parent
a1ebc9d
commit c26fc15
Showing
21 changed files
with
520 additions
and
131 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
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
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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@agentic/core", | ||
"version": "6.6.1", | ||
"description": "AI function stdlib that works with any LLM and TypeScript AI SDK.", | ||
"description": "Core agentic AI utils which work with any LLM and TypeScript AI SDK.", | ||
"author": "Travis Fischer <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
|
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,84 @@ | ||
{ | ||
"name": "@agentic/stdlib", | ||
"version": "6.6.1", | ||
"description": "Standard library of AI functions which work with any LLM and TypeScript AI SDK.", | ||
"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 --config ../../tsup.config.ts", | ||
"dev": "tsup --config ../../tsup.config.ts --watch", | ||
"clean": "del dist", | ||
"test": "run-s test:*", | ||
"test:lint": "eslint .", | ||
"test:typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@agentic/ai-sdk": "workspace:*", | ||
"@agentic/bing": "workspace:*", | ||
"@agentic/calculator": "workspace:*", | ||
"@agentic/clearbit": "workspace:*", | ||
"@agentic/dexa": "workspace:*", | ||
"@agentic/dexter": "workspace:*", | ||
"@agentic/diffbot": "workspace:*", | ||
"@agentic/e2b": "workspace:*", | ||
"@agentic/exa": "workspace:*", | ||
"@agentic/firecrawl": "workspace:*", | ||
"@agentic/genkit": "workspace:*", | ||
"@agentic/github": "workspace:*", | ||
"@agentic/hacker-news": "workspace:*", | ||
"@agentic/hunter": "workspace:*", | ||
"@agentic/jina": "workspace:*", | ||
"@agentic/langchain": "workspace:*", | ||
"@agentic/llamaindex": "workspace:*", | ||
"@agentic/midjourney": "workspace:*", | ||
"@agentic/novu": "workspace:*", | ||
"@agentic/people-data-labs": "workspace:*", | ||
"@agentic/perigon": "workspace:*", | ||
"@agentic/polygon": "workspace:*", | ||
"@agentic/predict-leads": "workspace:*", | ||
"@agentic/proxycurl": "workspace:*", | ||
"@agentic/search-and-crawl": "workspace:*", | ||
"@agentic/searxng": "workspace:*", | ||
"@agentic/serpapi": "workspace:*", | ||
"@agentic/serper": "workspace:*", | ||
"@agentic/slack": "workspace:*", | ||
"@agentic/social-data": "workspace:*", | ||
"@agentic/tavily": "workspace:*", | ||
"@agentic/twilio": "workspace:*", | ||
"@agentic/twitter": "workspace:*", | ||
"@agentic/weather": "workspace:*", | ||
"@agentic/wikidata": "workspace:*", | ||
"@agentic/wikipedia": "workspace:*", | ||
"@agentic/wolfram-alpha": "workspace:*", | ||
"@e2b/code-interpreter": "^0.0.8" | ||
}, | ||
"peerDependencies": { | ||
"@agentic/core": "workspace:*", | ||
"zod": "^3.23.8" | ||
}, | ||
"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,32 @@ | ||
export * from '@agentic/bing' | ||
export * from '@agentic/calculator' | ||
export * from '@agentic/clearbit' | ||
export * from '@agentic/dexa' | ||
export * from '@agentic/diffbot' | ||
export * from '@agentic/e2b' | ||
export * from '@agentic/exa' | ||
export * from '@agentic/firecrawl' | ||
export * from '@agentic/github' | ||
export * from '@agentic/hacker-news' | ||
export * from '@agentic/hunter' | ||
export * from '@agentic/jina' | ||
export * from '@agentic/midjourney' | ||
export * from '@agentic/novu' | ||
export * from '@agentic/people-data-labs' | ||
export * from '@agentic/perigon' | ||
export * from '@agentic/polygon' | ||
export * from '@agentic/predict-leads' | ||
export * from '@agentic/proxycurl' | ||
export * from '@agentic/search-and-crawl' | ||
export * from '@agentic/searxng' | ||
export * from '@agentic/serpapi' | ||
export * from '@agentic/serper' | ||
export * from '@agentic/slack' | ||
export * from '@agentic/social-data' | ||
export * from '@agentic/tavily' | ||
export * from '@agentic/twilio' | ||
export * from '@agentic/twitter' | ||
export * from '@agentic/weather' | ||
export * from '@agentic/wikidata' | ||
export * from '@agentic/wikipedia' | ||
export * from '@agentic/wolfram-alpha' |
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"] | ||
} |
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
Oops, something went wrong.