-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
6,664 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Mintlify Starter Kit | ||
|
||
Click on `Use this template` to copy the Mintlify starter kit. The starter kit contains examples including | ||
|
||
- Guide pages | ||
- Navigation | ||
- Customizations | ||
- API Reference pages | ||
- Use of popular components | ||
|
||
### 👩💻 Development | ||
|
||
Install the [Mintlify CLI](https://www.npmjs.com/package/mintlify) to preview the documentation changes locally. To install, use the following command | ||
|
||
``` | ||
npm i -g mintlify | ||
``` | ||
|
||
Run the following command at the root of your documentation (where mint.json is) | ||
|
||
``` | ||
mintlify dev | ||
``` | ||
|
||
### 😎 Publishing Changes | ||
|
||
Changes will be deployed to production automatically after pushing to the default branch. | ||
|
||
You can also preview changes using PRs, which generates a preview link of the docs. | ||
|
||
#### Troubleshooting | ||
|
||
- Mintlify dev isn't running - Run `mintlify install` it'll re-install dependencies. | ||
- Page loads as a 404 - Make sure you are running in a folder with `mint.json` |
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,3 @@ | ||
## My Snippet | ||
|
||
<Info>This is an example of a reusable snippet</Info> |
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.
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.
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.
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.
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,85 @@ | ||
{ | ||
"$schema": "https://mintlify.com/schema.json", | ||
"name": "AgentOps", | ||
"logo": { | ||
"dark": "/logo/dark.svg", | ||
"light": "/logo/light.svg" | ||
}, | ||
"favicon": "/favicon.png", | ||
"colors": { | ||
"primary": "#9563FF", | ||
"light": "#AE87FF", | ||
"dark": "#0D001D", | ||
"background": { | ||
"dark": "#090014" | ||
}, | ||
"anchors": { | ||
"from": "#FF7F57", | ||
"to": "#9563FF" | ||
} | ||
}, | ||
"topbarLinks": [ | ||
{ | ||
"name": "Support", | ||
"url": "mailto:[email protected]" | ||
} | ||
], | ||
"topbarCtaButton": { | ||
"name": "Dashboard", | ||
"url": "https://app.agentops.ai" | ||
}, | ||
"navigation": [ | ||
{ | ||
"group": "Getting Started", | ||
"pages": [ | ||
"v1/introduction", | ||
"v1/installation", | ||
"v1/quickstart", | ||
"v1/examples" | ||
] | ||
}, | ||
{ | ||
"group": "Details", | ||
"pages": [ | ||
"v1/details/core-concepts", | ||
"v1/details/sdk-reference", | ||
"v1/details/sessions", | ||
"v1/details/events", | ||
"v1/details/tags", | ||
"v1/details/decorators", | ||
"v1/details/recording-events", | ||
"v1/details/tracking-agents", | ||
"v1/details/tracking-llm-calls", | ||
"v1/details/more-models-with-litellm" | ||
] | ||
}, | ||
{ | ||
"group": "Integrations", | ||
"pages": ["v1/integrations/crewai", "v1/integrations/cohere"] | ||
},{ | ||
"group": "Other Info", | ||
"pages": [ | ||
"v1/details/host-env" | ||
] | ||
}, | ||
{ | ||
"group": "Integrations", | ||
"pages": ["v1/integrations/crewai"] | ||
},{ | ||
"group": "Other Info", | ||
"pages": [ | ||
"v1/details/host-env" | ||
] | ||
} | ||
], | ||
"footerSocials": { | ||
"twitter": "https://twitter.com/agentopsai", | ||
"github": "https://github.com/AgentOps-AI" | ||
}, | ||
"analytics": { | ||
"posthog": { | ||
"apiKey": "phc_BrY3H11IViWSoUJ0QFfjBx7kEwIJMT0PjBEXZQmddW", | ||
"apiHost": "https://us.i.posthog.com" | ||
} | ||
} | ||
} |
Oops, something went wrong.