Skip to content

Commit

Permalink
permahacks ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushKun committed Oct 18, 2024
1 parent 5c70a97 commit 067d5b1
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Button } from "@/components/ui/button";
import { useGlobalState } from "@/hooks";
import useProjectManager, { PFile, ProjectManager, Project } from "@/hooks/useProjectManager";
import { CompletionFormatter } from "@/lib/ai-completion-formatter";
import { runLua } from "@/lib/ao-vars";
import { Editor, useMonaco } from "@monaco-editor/react";
import { sendGAEvent } from "@next/third-parties/google";
Expand All @@ -18,11 +17,14 @@ import Markdown from "react-markdown";
import Latex from "react-latex-next";
import remarkGfm from "remark-gfm";
import { v4 } from "uuid";
import dynamic from "next/dynamic";
import runIcon from "@/assets/icons/run.svg";

// AI AUTOCOMPLETE (PERMAHACKS BOUNTY)
import { createGoogleGenerativeAI } from "@ai-sdk/google";
import { generateText } from "ai";
import { CompletionFormatter } from "@/lib/ai-completion-formatter";
import { generateContext } from "@/lib/ai";
import dynamic from "next/dynamic";
import runIcon from "@/assets/icons/run.svg";

const Plot = dynamic(
() =>
Expand Down

0 comments on commit 067d5b1

Please sign in to comment.