-
-
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.
Merge pull request #659 from transitive-bullshit/feature/mintlify-docs
- Loading branch information
Showing
54 changed files
with
3,432 additions
and
609 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,9 +1,5 @@ | ||
{ | ||
"root": true, | ||
"extends": ["@fisch0920/eslint-config/node"], | ||
"rules": { | ||
"unicorn/no-static-only-class": "off", | ||
"unicorn/no-array-reduce": "off", | ||
"@typescript-eslint/naming-convention": "off" | ||
} | ||
"ignorePatterns": ["out"] | ||
} |
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 @@ | ||
--- | ||
title: Intro | ||
description: Agentic is an open source, TypeScript, AI agent standard library that works with any LLM and TS AI SDK. | ||
--- | ||
|
||
Agentic's standard library of TypeScript AI tools are **optimized for both TS-usage as well as LLM-based usage**, which is really important for testing and debugging. | ||
|
||
Agentic tools work with any LLM capable of function calling and all of the major TS AI SDKs, including: | ||
|
||
- Vercel AI SDK | ||
- LangChain | ||
- LlamaIndex | ||
- Firebase Genkit | ||
- Dexa Dexter | ||
- OpenAI | ||
|
||
<Frame style={{ maxWidth: 308, margin: '0 auto' }}> | ||
<img src='/media/agentic-header.jpg' alt='Agentic header' /> | ||
</Frame> |
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,94 @@ | ||
{ | ||
"$schema": "https://mintlify.com/schema.json", | ||
"name": "Agentic", | ||
"logo": { | ||
"dark": "/media/agentic-logo-dark.svg", | ||
"light": "/media/agentic-logo-light.svg" | ||
}, | ||
"favicon": "/media/favicon.svg", | ||
"colors": { | ||
"primary": "#DD5130", | ||
"light": "#F76340", | ||
"dark": "#DD5130", | ||
"anchors": { | ||
"from": "#DD5130", | ||
"to": "#F76340" | ||
} | ||
}, | ||
"topbarLinks": [ | ||
{ | ||
"name": "Twitter", | ||
"url": "https://x.com/transitive_bs" | ||
} | ||
], | ||
"topbarCtaButton": { | ||
"name": "GitHub", | ||
"url": "https://github.com/transitive-bullshit/agentic" | ||
}, | ||
"anchors": [ | ||
{ | ||
"name": "GitHub", | ||
"icon": "github", | ||
"url": "https://github.com/transitive-bullshit/agentic" | ||
} | ||
], | ||
"navigation": [ | ||
{ | ||
"group": "Getting Started", | ||
"pages": ["intro", "quickstart", "usage"] | ||
}, | ||
{ | ||
"group": "AI SDKs", | ||
"pages": [ | ||
"sdks/ai-sdk", | ||
"sdks/langchain", | ||
"sdks/llamaindex", | ||
"sdks/genkit", | ||
"sdks/dexter", | ||
"sdks/openai" | ||
] | ||
}, | ||
{ | ||
"group": "Tools", | ||
"pages": [ | ||
"tools/bing", | ||
"tools/calculator", | ||
"tools/clearbit", | ||
"tools/dexa", | ||
"tools/diffbot", | ||
"tools/e2b", | ||
"tools/exa", | ||
"tools/firecrawl", | ||
"tools/hacker-news", | ||
"tools/hunter", | ||
"tools/jina", | ||
"tools/midjourney", | ||
"tools/novu", | ||
"tools/people-data-labs", | ||
"tools/perigon", | ||
"tools/polygon", | ||
"tools/predict-leads", | ||
"tools/proxycurl", | ||
"tools/searxng", | ||
"tools/serpapi", | ||
"tools/serper", | ||
"tools/slack", | ||
"tools/social-data", | ||
"tools/tavily", | ||
"tools/twilio", | ||
"tools/twitter", | ||
"tools/weather", | ||
"tools/wikidata", | ||
"tools/wikipedia", | ||
"tools/wolfram-alpha" | ||
] | ||
} | ||
], | ||
"footerSocials": { | ||
"x": "https://x.com/transitive_bs", | ||
"github": "https://github.com/transitive-bullshit/agentic" | ||
}, | ||
"seo": { | ||
"indexHiddenPages": true | ||
} | ||
} |
Oops, something went wrong.