Spaces:
Runtime error
Runtime error
| import chalk from "chalk"; | |
| import figlet from "figlet"; | |
| export const printTitle = () => { | |
| console.log( | |
| chalk.red( | |
| figlet.textSync("AgentGPT", { | |
| horizontalLayout: "full", | |
| font: "ANSI Shadow", | |
| }) | |
| ) | |
| ); | |
| console.log( | |
| "Welcome to the AgentGPT CLI! This CLI will generate the required .env files." | |
| ); | |
| console.log( | |
| "Copies of the generated envs will be created in `./next/.env` and `./platform/.env`.\n" | |
| ); | |
| }; | |
| // Function to check if entered api key is in the correct format or empty | |
| export const isValidKey = (apikey, pattern) => { | |
| return (apikey === "" || pattern.test(apikey)) | |
| }; | |
| export const validKeyErrorMessage = "\nInvalid api key. Please try again." | |