-
- {
- "Continue allows you to use our OpenAI API key for up to 250 inputs. After this, you can either use your own API key, or use a local LLM. Click the progress bar to go to the docs and learn more."
- }
-
>
);
};
diff --git a/extension/react-app/src/components/dialogs/FTCDialog.tsx b/extension/react-app/src/components/dialogs/FTCDialog.tsx
deleted file mode 100644
index 5fa2d4e6..00000000
--- a/extension/react-app/src/components/dialogs/FTCDialog.tsx
+++ /dev/null
@@ -1,73 +0,0 @@
-import React, { useContext } from "react";
-import styled from "styled-components";
-import { Button, Input } from "..";
-import { useNavigate } from "react-router-dom";
-import { GUIClientContext } from "../../App";
-import { useDispatch } from "react-redux";
-import { setShowDialog } from "../../redux/slices/uiStateSlice";
-
-const GridDiv = styled.div`
- display: grid;
- grid-template-columns: 1fr 1fr;
- grid-gap: 8px;
- align-items: center;
-`;
-
-function FTCDialog() {
- const navigate = useNavigate();
- const [apiKey, setApiKey] = React.useState("");
- const client = useContext(GUIClientContext);
- const dispatch = useDispatch();
-
- return (
-
-
Free Trial Limit Reached
-
- You've reached the free trial limit of 250 free inputs with Continue's
- OpenAI API key. To keep using Continue, you can either use your own API
- key, or use a local LLM. To read more about the options, see our{" "}
-
- documentation
-
- . If you're just looking for fastest way to keep going, type '/config'
- to open your Continue config file and paste your API key into the
- OpenAIFreeTrial object.
-