docs: add guide for building Gradio frontend with CrewAI

This commit is contained in:
Yuvraj Sharma
2024-12-31 20:07:23 +05:30
parent 73f328860b
commit b6d2cfea17
6 changed files with 430 additions and 0 deletions

12
.crossnote/parser.js Normal file
View File

@@ -0,0 +1,12 @@
({
// Please visit the URL below for more information:
// https://shd101wyy.github.io/markdown-preview-enhanced/#/extend-parser
onWillParseMarkdown: async function(markdown) {
return markdown;
},
onDidParseMarkdown: async function(html) {
return html;
},
})