diff --git a/docs/getting-started/quickstart.mdx b/docs/getting-started/quickstart.mdx index 4687b41..af7e259 100644 --- a/docs/getting-started/quickstart.mdx +++ b/docs/getting-started/quickstart.mdx @@ -6,37 +6,29 @@ description: Learn the basics of the AI Agent SDK in a few minutes. - ```npx @covalenthq/create-zee-app``` +
npx @covalenthq/create-zee-app
-```tsx -const agent1 = new Agent({ +
{`const agent1 = new Agent({
     name: "Agent1",
     model: {
         provider: "OPEN_AI",
         name: "gpt-4o-mini",
     },
     description: "A helpful AI assistant that can engage in conversation.",
-});
-```
+});`}
-```tsx -const zee = new ZeeWorkflow({ +
{`const zee = new ZeeWorkflow({
     description: "A workflow of agents that do stuff together",
     output: "Just bunch of stuff",
     agents: { agent1, agent2 },
-});
-```
+});`}
-```tsx -(async function main() { +
{`(async function main() {
     const result = await zee.run();
     console.log(result);
-})();
-```
-
+})();`}
-