Wasp ai cli mage (#1601)
* Improved Wasp AI CLI experience. * fix * Added CLI Usage, polished CLI commands. * Added choice of temperature. * Added styling. * Added more sophisticated, terminal-only styling. * fix * Updated Mage to use new Wasp CLI + added some messaging to CLI. * fix * Created wasp-ai/README, updated waspc/README. * Moved wasp-ai/ to mage/. * Final polishing (docs, readmes, messaging). * fix * Added tests for LogMsg. * Updated versions of test apps to 0.12. * fix * fix * Update mage/README.md * fix * fix
@ -86,6 +86,10 @@ to install Wasp on OSX/Linux/WSL(Win). From there, just follow the instructions
|
||||
|
||||
For more details, check out [the docs](https://wasp-lang.dev/docs).
|
||||
|
||||
# Wasp AI / Mage
|
||||
|
||||
Wasp comes with experimental AI code generator to help you kickstart your next Wasp project -> you can use it via `wasp new` in the CLI (choose "AI" option) if you can provide your OpenAI keys or you can do it via our [Mage web app](https://usemage.ai) in which case our OpenAI keys are used in the background.
|
||||
|
||||
# This repository
|
||||
|
||||
This is the main repo of the Wasp universe, containing core code (mostly `waspc` - Wasp compiler) and the supporting materials.
|
||||
|
3
wasp-ai/.gitignore → mage/.gitignore
vendored
@ -9,3 +9,6 @@
|
||||
# or modify/delete these two lines.
|
||||
*.env
|
||||
*.env.*
|
||||
|
||||
# Emacs specific
|
||||
.projectile
|
@ -33,7 +33,7 @@ RUN cd server && PRISMA_CLIENT_OUTPUT_DIR=../server/node_modules/.prisma/client/
|
||||
RUN cd server && npm run build
|
||||
|
||||
FROM base AS server-production
|
||||
RUN curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.11.4-wasp-ai-12
|
||||
RUN curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.12.0
|
||||
ENV PATH "$PATH:/root/.local/bin"
|
||||
ENV NODE_ENV production
|
||||
WORKDIR /app
|
44
mage/README.md
Normal file
@ -0,0 +1,44 @@
|
||||
# Mage
|
||||
|
||||
This directory contains the source code of Mage (aka "GPT Web App Generator" aka "Wasp AI"): a Wasp app (so a full-stack web app) that allows you to create a new Wasp app (inception :)!) from just a short description. It uses ChatGPT in a smart way to accomplish this (so it would be clasified as an AI code agent).
|
||||
|
||||
Mage is hosted at https://usemage.ai and you can use it there for free.
|
||||
|
||||
You can learn more about it [here](https://wasp-lang.dev/blog/2023/07/10/gpt-web-app-generator) and [here](https://wasp-lang.dev/blog/2023/07/17/how-we-built-gpt-web-app-generator).
|
||||
|
||||
## Running locally
|
||||
|
||||
Mage is really just a client / UI for calling "Wasp AI", which is AI logic that does all the heavy lifting, and is integrated into Wasp's CLI: `wasp`.
|
||||
So, if you want to generate Wasp apps via AI locally, on your machine, with your OpenAI keys and your choice of models/parameters, we recommend NOT running the Mage app locally, because it is not so easy, instead we recommend you to do it directly via `wasp` CLI, with `wasp new` or `wasp new:ai` commands. Check our docs on how to install `wasp` CLI: https://wasp-lang.dev/docs/quick-start#installation .
|
||||
|
||||
If you still want to run Mage web app locally for some specific reason, most likely because you want to contribute, you will need to do the following:
|
||||
|
||||
1. Copy `.env.server.example` into `.env.server` and fill in the missing values. You will basically need to provide Github and Google OAuth creds (and first create OAuth apps on both Github and Google if you don't have them yet - if you are a member of Wasp team ask for dev creds, if not you will have to create your own OAuth apps).
|
||||
2. Run `wasp db start` and then `wasp start`! It might ask you to do `wasp db migrate-dev`, do that if needed.
|
||||
3. When running Mage locally, it will be looking for `wasp-cli` binary on your machine to use. To satisfy this requirement, you can go to `waspc/` dir (just next to this one) and run `./run install` there. You will want to check though if that Wasp version matches the version Mage expects (check its Dockerfile to see which version of Wasp it expects).
|
||||
If building `waspc/` is too complex for you (you don't have Haskell toolchain set up, taking too long, ...), you can go into the code of Mage, find where it calls `wasp-cli` and modify that temporarily to call `wasp` instead.
|
||||
|
||||
## Developing
|
||||
|
||||
### Updating Wasp version in Dockerfile
|
||||
|
||||
Keep in mind that Mage, when deployed, will install the version of Wasp specified in its Dockerfile.
|
||||
So, make sure to update that version to be in sync with the version of Wasp that it was developed against.
|
||||
Most often that should be the current version of Wasp on `main`, even if not released yet.
|
||||
|
||||
## Deployment
|
||||
|
||||
Mage is currently deployed on Wasp's Fly.io cloud.
|
||||
|
||||
Same as the rest of Wasp (blog/docs, CLI, ...), the latest deployed version is tracked on `release` branch.
|
||||
|
||||
So if you want to deploy new version of Mage, you should get it in wanted state on `release` branch, and then deploy from there.
|
||||
|
||||
Also, before deploying, check that version of `wasp` in `Dockerfile` makes sense.
|
||||
|
||||
To deploy it, just run `wasp deploy fly deploy`. You might want to add `--org wasp` if needed.
|
||||
|
||||
## FAQ
|
||||
|
||||
Q: What is the difference between Wasp AI and Mage? Are those the same thing?
|
||||
A: When we say "Wasp AI" we refer to logic implemented in `wasp` CLI, while when we say "Mage" we refer to the Mage web app that really serves as a client for "Wasp AI" (calls it in the background). That said, we sometimes use these interchangeably.
|
@ -50,7 +50,7 @@ export function RootComponent({ children }) {
|
||||
cursor-pointer flex-row
|
||||
space-x-3
|
||||
text-white bg-gradient-to-r from-pink-400 to-amber-400"
|
||||
onClick={() => window.open("https://github.com/wasp-lang/wasp/tree/wasp-ai")}
|
||||
onClick={() => window.open("https://github.com/wasp-lang/wasp")}
|
||||
>
|
||||
<div
|
||||
className={`
|
||||
@ -103,7 +103,7 @@ export function RootComponent({ children }) {
|
||||
<p className="text-center text-slate-500 text-sm mt-2">
|
||||
This whole app is open-source, you can find the code{" "}
|
||||
<a
|
||||
href="https://github.com/wasp-lang/wasp/tree/wasp-ai/wasp-ai"
|
||||
href="https://github.com/wasp-lang/wasp/tree/main/mage"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-sky-500 hover:text-sky-600"
|
@ -4,8 +4,8 @@ import { FiChevronDown, FiChevronRight } from 'react-icons/fi'
|
||||
function l(title, overrideTitle) {
|
||||
const links = {
|
||||
"Wasp": "https://wasp-lang.dev/",
|
||||
"web app": "https://github.com/wasp-lang/wasp/tree/wasp-ai/wasp-ai",
|
||||
"GPT code agent": "https://github.com/wasp-lang/wasp/tree/wasp-ai/waspc/src/Wasp/AI",
|
||||
"web app": "https://github.com/wasp-lang/wasp/tree/main/mage",
|
||||
"GPT code agent": "https://github.com/wasp-lang/wasp/tree/main/waspc/src/Wasp/AI",
|
||||
"blog post": "https://wasp-lang.dev/blog/2023/07/10/gpt-web-app-generator"
|
||||
};
|
||||
|
||||
@ -46,7 +46,7 @@ const faqs = [
|
||||
|
||||
<br/><br/>
|
||||
|
||||
With GPT4 increasing its availability and with LLMs improving in general, the quality of generated code will only get better!
|
||||
With LLMs improving in general, the quality of generated code will only get better!
|
||||
</p>
|
||||
},
|
||||
{
|
||||
@ -80,26 +80,28 @@ const faqs = [
|
||||
|
||||
<br/><br/>
|
||||
|
||||
However, in the future, when GPT4 becomes cheaper / more available, it would make sense to switch to it completely, since it does generate better code!
|
||||
However, in the future, when GPT4 becomes cheaper / faster, it would make sense to switch to it completely, since it does generate better code!
|
||||
</p>
|
||||
},
|
||||
{
|
||||
question: '[Advanced] Can I use GPT4 for the whole app?',
|
||||
question: '[Advanced] Can I use GPT4 for the whole app? / Can I run Mage locally?',
|
||||
answer: <p>
|
||||
As mentioned above, we use GPT4 + GPT3.5 for practical reasons, even though using GPT4 exclusively does give better results.<br/>
|
||||
<br/>
|
||||
However, if you have access yourself to the OpenAI API, you can use GPT4 for the whole app, or play with adjusting the temperature, by running the Wasp GPT code agent locally!<br/>
|
||||
However, if you have access yourself to the OpenAI API, you can use GPT4 for the whole app, or play with adjusting the temperature, by running the Wasp GPT code agent locally! So same thing like Mage, but via CLI.<br/>
|
||||
Note: generating an app usually consumes from 20k to 50k tokens, which is then approximately $1 to $2 per app with the current GPT4 pricing (Jul 11th 2023).<br/>
|
||||
<br/>
|
||||
You will need to install special version of Wasp:<br/>
|
||||
To run Wasp AI (Mage) locally, make sure you have wasp {'>='}v0.12 installed and just run:<br/>
|
||||
<span className="bg-slate-800 text-slate-200 p-1 rounded">
|
||||
curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.11.1-wasp-ai-11
|
||||
wasp new
|
||||
</span><br/>
|
||||
When asked, choose AI generation, answer some questions, and your app will start generating!<br/>
|
||||
<br/>
|
||||
Now you can run app generation locally via:<br/>
|
||||
There is also a command for running the same thing programmatically, without interactive questions:<br/>
|
||||
<span className="bg-slate-800 text-slate-200 p-1 rounded">
|
||||
wasp new-ai:disk MyAwesomeApp "Description of my awesome app." {'"{ \\"defaultGptModel\\": \\"gpt-4\\" }"'}
|
||||
</span>
|
||||
wasp new:ai
|
||||
</span><br/>
|
||||
Run it with no arguments (as above) to see its usage instructions.
|
||||
</p>
|
||||
},
|
||||
]
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
@ -278,7 +278,7 @@ export const ResultPage = () => {
|
||||
>
|
||||
<span
|
||||
className="item-center flex gap-2 p-1 px-2 cursor-pointer text-pink-800 bg-pink-200 rounded"
|
||||
onClick={() => window.open("https://github.com/wasp-lang/wasp/tree/wasp-ai")}
|
||||
onClick={() => window.open("https://github.com/wasp-lang/wasp")}
|
||||
>
|
||||
<span>
|
||||
🔮 This is a Wasp powered project. If you like it,{" "}
|
Before Width: | Height: | Size: 659 KiB After Width: | Height: | Size: 659 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 725 KiB After Width: | Height: | Size: 725 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
@ -62,7 +62,8 @@ export const generateApp: GenerateAppJob<
|
||||
const stdoutMutex = new Mutex();
|
||||
let waspCliProcess = null;
|
||||
const waspCliProcessArgs = [
|
||||
"new-ai",
|
||||
"new:ai",
|
||||
"--stdout",
|
||||
project.name,
|
||||
project.description,
|
||||
JSON.stringify(projectConfig),
|
@ -1,6 +1,6 @@
|
||||
# Changelog
|
||||
|
||||
## 0.12.0
|
||||
## [WIP] 0.12.0
|
||||
|
||||
### ⚠️ Breaking changes
|
||||
|
||||
|
@ -326,23 +326,24 @@ NOTE: When you run it for the first time it might take a while (~10 minutes) for
|
||||
We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0-beta.2/) convention when creating commits.
|
||||
|
||||
## Branching and merging strategy
|
||||
This repo contains both the source code that makes up a Wasp release (under `waspc`), as well as our website containing documentation and blog posts (under `web`). In order to facilitate the development of Wasp code while still allowing for website updates or hotfixes of the current release, we have decided on the following minimal branching strategy.
|
||||
This repo contains both the source code that makes up a Wasp release (under `waspc`), as well as our website containing documentation and blog posts (under `web`), and also Mage web app (under `mage`). In order to facilitate the development of Wasp code while still allowing for website / Mage updates or hotfixes of the current release, we have decided on the following minimal branching strategy.
|
||||
|
||||
All Wasp development should be done on feature branches. They form the basis of PRs that will target one of the two following branches:
|
||||
|
||||
- `main`: this branch contains all the actively developed new features and corresponding documentation updates. Some of these things may not yet be released, but anything merged into `main` should be in a release-ready state.
|
||||
- This is the default branch to target for any Wasp feature branches.
|
||||
- `release`: this branch contains the source code of current/latest Wasp release, as well as the documentation and blog posts currently published and therefore visible on the website.
|
||||
- `release`: this branch contains the source code of current/latest Wasp release, as well as the documentation and blog posts currently published and therefore visible on the website, and also currently published version of Mage.
|
||||
- When doing a full release, which means making a new release based on what we have currently on `main`, we do the following:
|
||||
1. Update `main` branch by merging `release` into it. There might be conflicts but they shouldn't be too hard to fix. Once `main` is updated, you can create a new waspc release from it, as well as deploy the website from it.
|
||||
2. Update `release` branch to this new `main` by merging `main` into it. There will be no conflicts since we already resolved all of them in the previous step.
|
||||
|
||||
How do I know where I want to target my PR, to `release` or `main`?
|
||||
- If you have a change that you want to publish right now or very soon, certainly earlier than waiting till `main` is ready for publishing, then you want to target `release`. This could be website content update, new blog post, documentation (hot)fix, compiler hotfix that we need to release quickly via a new patch version, ... .
|
||||
- If you have a change that you want to publish right now or very soon, certainly earlier than waiting till `main` is ready for publishing, then you want to target `release`. This could be website content update, new blog post, documentation (hot)fix, compiler hotfix that we need to release quickly via a new patch version, update for Mage that needs to go out now, ... .
|
||||
- If you have a change that is not urgent and can wait until the next "normal" Wasp release is published, then target `main`. These are new features, refactorings, docs accompanying new features, ... .
|
||||
- Stuff published on `release` (docs, Mage) uses/references version of `wasp` that was last released (so one that is also on `release`).
|
||||
- TLDR;
|
||||
- `release` is for changes to the already published stuff (the present).
|
||||
- `main` is for changes to the to-be-published stuff (the future).
|
||||
- `release` represents the present, and is for changes to the already published stuff.
|
||||
- `main` represents near future, and is for changes to the to-be-published stuff.
|
||||
|
||||
## Deployment / CI
|
||||
We use Github Actions for CI.
|
||||
@ -375,6 +376,7 @@ If it happens just once every so it is probably nothing to worry about. If it ha
|
||||
- Publish the draft release when ready.
|
||||
- Merge `release` back into `main` (`git merge release` while on the `main` branch), if needed.
|
||||
- Publish new [docs](/web#deployment) from the `release` branch as well.
|
||||
- Publish new [Mage](/mage#deployment) from the `release` branch as well, if needed.
|
||||
- Announce new release in Discord.
|
||||
|
||||
#### Determining next version
|
||||
@ -393,7 +395,10 @@ If doing this, steps are the following:
|
||||
|
||||
|
||||
## Documentation
|
||||
External documentation, for users of Wasp, is hosted at https://wasp-lang.dev/docs, and its source is available at [web/docs](/web/docs), next to the website and blog.
|
||||
External documentation, for users of Wasp, is hosted at https://wasp-lang.dev/docs, and its source is available at [web/docs](/web/docs), next to the website and blog.
|
||||
|
||||
## Mage
|
||||
Wasp's magic GPT web app generator aka Wasp AI aka Mage is hosted at https://usemage.ai and its source is available at [mage](/mage).
|
||||
|
||||
Make sure to update it when changes modify how Wasp works.
|
||||
|
||||
|
@ -46,13 +46,7 @@ main = withUtf8 . (`E.catch` handleInternalErrors) $ do
|
||||
args <- getArgs
|
||||
let commandCall = case args of
|
||||
("new" : newArgs) -> Command.Call.New newArgs
|
||||
-- new-ai / new-ai:stdout is meant to be called and consumed programatically (e.g. by our Wasp AI
|
||||
-- web app), while new-ai:disk is useful for us for testing.
|
||||
[newAiCmd, projectName, appDescription, projectConfigJson]
|
||||
| newAiCmd `elem` ["new-ai", "new-ai:stdout"] ->
|
||||
Command.Call.NewAiToStdout projectName appDescription projectConfigJson
|
||||
| newAiCmd == "new-ai:disk" ->
|
||||
Command.Call.NewAiToDisk projectName appDescription projectConfigJson
|
||||
("new:ai" : newAiArgs) -> Command.Call.NewAi newAiArgs
|
||||
["start"] -> Command.Call.Start
|
||||
["start", "db"] -> Command.Call.StartDb
|
||||
["clean"] -> Command.Call.Clean
|
||||
@ -88,10 +82,20 @@ main = withUtf8 . (`E.catch` handleInternalErrors) $ do
|
||||
|
||||
case commandCall of
|
||||
Command.Call.New newArgs -> runCommand $ createNewProject newArgs
|
||||
Command.Call.NewAiToStdout projectName appDescription projectConfigJson ->
|
||||
runCommand $ Command.CreateNewProject.AI.createNewProjectNonInteractiveToStdout projectName appDescription projectConfigJson
|
||||
Command.Call.NewAiToDisk projectName appDescription projectConfigJson ->
|
||||
runCommand $ Command.CreateNewProject.AI.createNewProjectNonInteractiveOnDisk projectName appDescription projectConfigJson
|
||||
Command.Call.NewAi newAiArgs -> case newAiArgs of
|
||||
["--stdout", projectName, appDescription, projectConfigJson] ->
|
||||
runCommand $
|
||||
Command.CreateNewProject.AI.createNewProjectNonInteractiveToStdout
|
||||
projectName
|
||||
appDescription
|
||||
projectConfigJson
|
||||
[projectName, appDescription, projectConfigJson] ->
|
||||
runCommand $
|
||||
Command.CreateNewProject.AI.createNewProjectNonInteractiveOnDisk
|
||||
projectName
|
||||
appDescription
|
||||
projectConfigJson
|
||||
_ -> printWaspNewAiUsage
|
||||
Command.Call.Start -> runCommand start
|
||||
Command.Call.StartDb -> runCommand Command.Start.Db.start
|
||||
Command.Call.Clean -> runCommand clean
|
||||
@ -141,6 +145,11 @@ printUsage =
|
||||
" -t|--template <template-name>",
|
||||
" Check out the templates list here: https://github.com/wasp-lang/starters",
|
||||
"",
|
||||
cmd " new:ai <app-name> <app-description> [<config-json>]",
|
||||
" Uses AI to create a new Wasp project just based on the app name and the description.",
|
||||
" You can do the same thing with `wasp new` interactively.",
|
||||
" Run `wasp new:ai` for more info.",
|
||||
"",
|
||||
cmd " version Prints current version of CLI.",
|
||||
cmd " waspls Run Wasp Language Server. Add --help to get more info.",
|
||||
cmd " completion Prints help on bash completion.",
|
||||
@ -230,6 +239,30 @@ printDbUsage =
|
||||
]
|
||||
{- ORMOLU_ENABLE -}
|
||||
|
||||
{- ORMOLU_DISABLE -}
|
||||
printWaspNewAiUsage :: IO ()
|
||||
printWaspNewAiUsage =
|
||||
putStrLn $
|
||||
unlines
|
||||
[ title "USAGE",
|
||||
" wasp new:ai <app-name> <app-description> <config-json>",
|
||||
"",
|
||||
" Config JSON:",
|
||||
" It is used to provide additional configuration to Wasp AI.",
|
||||
" Following fields are supported:",
|
||||
" {",
|
||||
" \"defaultGptTemperature\"?: number (from 0 to 2)",
|
||||
" \"planningGptModel\"?: string (OpenAI model name)",
|
||||
" \"codingGptModel\"?: string (OpenAI model name)",
|
||||
" \"primaryColor\"?: string (Tailwind color name)",
|
||||
" }",
|
||||
"",
|
||||
title "EXAMPLES",
|
||||
" wasp new:ai ButtonApp \"One page with button\" \"{}\"",
|
||||
" wasp new:ai ButtonApp \"One page with button\" \"{ \\\"defaultGptTemperature\\\": 0.5, \\\"codingGptModel\\\": \\\"gpt-4-1106-preview\\\" }\""
|
||||
]
|
||||
{- ORMOLU_ENABLE -}
|
||||
|
||||
cmd :: String -> String
|
||||
cmd = mapFirstWord (Term.applyStyles [Term.Yellow, Term.Bold])
|
||||
|
||||
|
@ -2,8 +2,7 @@ module Wasp.Cli.Command.Call where
|
||||
|
||||
data Call
|
||||
= New Arguments
|
||||
| NewAiToStdout String String String -- projectName, appDescription, projectConfigJson
|
||||
| NewAiToDisk String String String -- projectName, appDescription, projectConfigJson
|
||||
| NewAi Arguments
|
||||
| Start
|
||||
| StartDb
|
||||
| Clean
|
||||
|
@ -5,13 +5,11 @@ where
|
||||
|
||||
import Control.Monad.IO.Class (liftIO)
|
||||
import Data.Function ((&))
|
||||
import StrongPath (Abs, Dir, Path')
|
||||
import qualified StrongPath as SP
|
||||
import Wasp.Cli.Command (Command)
|
||||
import Wasp.Cli.Command.Call (Arguments)
|
||||
import Wasp.Cli.Command.CreateNewProject.AI (createNewProjectInteractiveOnDisk)
|
||||
import qualified Wasp.Cli.Command.CreateNewProject.AI as AI
|
||||
import Wasp.Cli.Command.CreateNewProject.ArgumentsParser (parseNewProjectArgs)
|
||||
import Wasp.Cli.Command.CreateNewProject.Common (throwProjectCreationError)
|
||||
import Wasp.Cli.Command.CreateNewProject.Common (printGettingStartedInstructions, throwProjectCreationError)
|
||||
import Wasp.Cli.Command.CreateNewProject.ProjectDescription
|
||||
( NewProjectDescription (..),
|
||||
obtainNewProjectDescription,
|
||||
@ -24,9 +22,7 @@ import Wasp.Cli.Command.CreateNewProject.StarterTemplates
|
||||
import Wasp.Cli.Command.CreateNewProject.StarterTemplates.Local (createProjectOnDiskFromLocalTemplate)
|
||||
import Wasp.Cli.Command.CreateNewProject.StarterTemplates.Remote (createProjectOnDiskFromRemoteTemplate)
|
||||
import Wasp.Cli.Command.Message (cliSendMessageC)
|
||||
import Wasp.Cli.Common (WaspProjectDir)
|
||||
import qualified Wasp.Message as Msg
|
||||
import qualified Wasp.Util.Terminal as Term
|
||||
|
||||
-- | It receives all of the arguments that were passed to the `wasp new` command.
|
||||
createNewProject :: Arguments -> Command ()
|
||||
@ -38,19 +34,6 @@ createNewProject args = do
|
||||
|
||||
createProjectOnDisk newProjectDescription
|
||||
liftIO $ printGettingStartedInstructions $ _absWaspProjectDir newProjectDescription
|
||||
where
|
||||
-- This function assumes that the project dir is created inside the current working directory when it
|
||||
-- prints the instructions.
|
||||
printGettingStartedInstructions :: Path' Abs (Dir WaspProjectDir) -> IO ()
|
||||
printGettingStartedInstructions absProjectDir = do
|
||||
let projectFolder = init . SP.toFilePath . SP.basename $ absProjectDir
|
||||
{- ORMOLU_DISABLE -}
|
||||
putStrLn $ Term.applyStyles [Term.Green] $ "Created new Wasp app in ./" ++ projectFolder ++ " directory!"
|
||||
putStrLn "To run it, do:"
|
||||
putStrLn ""
|
||||
putStrLn $ Term.applyStyles [Term.Bold] $ " cd " ++ projectFolder
|
||||
putStrLn $ Term.applyStyles [Term.Bold] " wasp start"
|
||||
{- ORMOLU_ENABLE -}
|
||||
|
||||
createProjectOnDisk :: NewProjectDescription -> Command ()
|
||||
createProjectOnDisk
|
||||
@ -67,4 +50,4 @@ createProjectOnDisk
|
||||
LocalStarterTemplate metadata ->
|
||||
liftIO $ createProjectOnDiskFromLocalTemplate absWaspProjectDir projectName appName $ _path metadata
|
||||
AiGeneratedStarterTemplate ->
|
||||
createNewProjectInteractiveOnDisk absWaspProjectDir appName
|
||||
AI.createNewProjectInteractiveOnDisk absWaspProjectDir appName
|
||||
|
@ -6,32 +6,110 @@ module Wasp.Cli.Command.CreateNewProject.AI
|
||||
where
|
||||
|
||||
import Control.Arrow ()
|
||||
import Control.Monad (unless)
|
||||
import Control.Monad.Except (MonadError (throwError), MonadIO (liftIO))
|
||||
import Data.Function ((&))
|
||||
import Data.Functor ((<&>))
|
||||
import Data.List (intercalate)
|
||||
import qualified Data.List.NonEmpty as NE
|
||||
import qualified Data.Text as T
|
||||
import qualified Data.Text.IO as T.IO
|
||||
import StrongPath (Abs, Dir, Path', fromAbsDir)
|
||||
import StrongPath (Abs, Dir, Path', basename, fromAbsDir, fromRelDir)
|
||||
import StrongPath.Operations ()
|
||||
import System.Directory (createDirectory, createDirectoryIfMissing, setCurrentDirectory)
|
||||
import System.Environment (lookupEnv)
|
||||
import System.FilePath (takeDirectory)
|
||||
import qualified System.FilePath as FP
|
||||
import System.IO (hFlush, stdout)
|
||||
import qualified Wasp.AI.CodeAgent as CA
|
||||
import qualified Wasp.AI.GenerateNewProject as GNP
|
||||
import Wasp.AI.GenerateNewProject.Common (NewProjectConfig, NewProjectDetails (..), emptyNewProjectConfig)
|
||||
import Wasp.AI.GenerateNewProject.Common
|
||||
( NewProjectConfig,
|
||||
NewProjectDetails (..),
|
||||
emptyNewProjectConfig,
|
||||
)
|
||||
import qualified Wasp.AI.GenerateNewProject.Common as GNP.C
|
||||
import qualified Wasp.AI.GenerateNewProject.LogMsg as GNP.L
|
||||
import Wasp.AI.OpenAI (OpenAIApiKey)
|
||||
import qualified Wasp.AI.OpenAI.ChatGPT as ChatGPT
|
||||
import Wasp.Cli.Command (Command, CommandError (CommandError))
|
||||
import Wasp.Cli.Command.CreateNewProject.ProjectDescription (NewProjectAppName (..), obtainAvailableProjectDirPath, parseWaspProjectNameIntoAppName)
|
||||
import Wasp.Cli.Command.CreateNewProject.ProjectDescription
|
||||
( NewProjectAppName (..),
|
||||
obtainAvailableProjectDirPath,
|
||||
parseWaspProjectNameIntoAppName,
|
||||
)
|
||||
import Wasp.Cli.Command.CreateNewProject.StarterTemplates (readWaspProjectSkeletonFiles)
|
||||
import Wasp.Cli.Common (WaspProjectDir)
|
||||
import qualified Wasp.Cli.Interactive as Interactive
|
||||
import qualified Wasp.Util as U
|
||||
import qualified Wasp.Util.Aeson as Utils.Aeson
|
||||
import qualified Wasp.Util.Terminal as T
|
||||
|
||||
createNewProjectInteractiveOnDisk :: Path' Abs (Dir WaspProjectDir) -> NewProjectAppName -> Command ()
|
||||
createNewProjectInteractiveOnDisk waspProjectDir appName = do
|
||||
openAIApiKey <- getOpenAIApiKey
|
||||
appDescription <- liftIO $ Interactive.askForRequiredInput "Describe your app in a couple of sentences"
|
||||
liftIO $ createNewProjectOnDisk openAIApiKey waspProjectDir appName appDescription emptyNewProjectConfig
|
||||
(planningGptModel, codingGptModel) <-
|
||||
liftIO $
|
||||
Interactive.askToChoose'
|
||||
"Choose GPT model(s) you want to use:"
|
||||
$ NE.fromList
|
||||
[ Interactive.Option
|
||||
"gpt-4 (planning) + gpt-3.5-turbo (coding)"
|
||||
(Just "Ok results. Cheap and fast. Best cost/benefit ratio.")
|
||||
(ChatGPT.GPT_4, ChatGPT.GPT_3_5_turbo),
|
||||
Interactive.Option
|
||||
"gpt-4 (planning) + gpt-4-1106-preview (coding)"
|
||||
(Just "Possibly better results, but somewhat slower and somewhat more expensive (~2-3x).")
|
||||
(ChatGPT.GPT_4, ChatGPT.GPT_4_1106_Preview),
|
||||
Interactive.Option
|
||||
"gpt-4 (planning + coding)"
|
||||
(Just "Best results, but quite slower and quite more expensive (~5x).")
|
||||
(ChatGPT.GPT_4, ChatGPT.GPT_4)
|
||||
]
|
||||
temperature <-
|
||||
liftIO $
|
||||
Interactive.askToChoose'
|
||||
"Choose the creativity level (temperature):"
|
||||
$ NE.fromList
|
||||
[ Interactive.Option
|
||||
"Balanced (0.7)"
|
||||
(Just "Optimal trade-off between creativity and possible mistakes.")
|
||||
0.7,
|
||||
Interactive.Option
|
||||
"Conventional (0.4)"
|
||||
(Just "Generates sensible code with minimal amount of mistakes.")
|
||||
0.4,
|
||||
Interactive.Option
|
||||
"Creative (1.0)"
|
||||
(Just "Generates more creative code, but mistakes are more likely.")
|
||||
1.0
|
||||
]
|
||||
let projectConfig =
|
||||
emptyNewProjectConfig
|
||||
{ GNP.C.projectPlanningGptModel = Just planningGptModel,
|
||||
GNP.C.projectCodingGptModel = Just codingGptModel,
|
||||
GNP.C.projectDefaultGptTemperature = Just temperature
|
||||
}
|
||||
|
||||
liftIO $ createNewProjectOnDisk openAIApiKey waspProjectDir appName appDescription projectConfig
|
||||
|
||||
liftIO $ do
|
||||
putStrLn $
|
||||
unlines
|
||||
[ "",
|
||||
"========",
|
||||
"",
|
||||
"⚠️ Experimental tech",
|
||||
"Since this is a GPT generated app, it will likely contain some mistakes, proportional to how",
|
||||
"complex the app is. If there are some in your app, check out Wasp docs for help while",
|
||||
"fixing them, and also feel free to reach out to us on Discord! You can also try",
|
||||
"generating the app again to get different results (try playing with the creativity level).",
|
||||
" - Wasp docs: https://wasp-lang.dev/docs",
|
||||
" - Our Discord: https://discord.gg/rzdnErX",
|
||||
"",
|
||||
"========"
|
||||
]
|
||||
|
||||
createNewProjectNonInteractiveOnDisk :: String -> String -> String -> Command ()
|
||||
createNewProjectNonInteractiveOnDisk projectName appDescription projectConfigJson = do
|
||||
@ -64,14 +142,16 @@ createNewProjectOnDisk openAIApiKey waspProjectDir appName appDescription projec
|
||||
CA._writeLog = forwardLogToStdout
|
||||
}
|
||||
|
||||
writeFileToDisk :: FilePath -> T.Text -> IO ()
|
||||
writeFileToDisk path content = do
|
||||
createDirectoryIfMissing True (takeDirectory path)
|
||||
T.IO.writeFile path content
|
||||
putStrLn $ "> Wrote file at " <> path
|
||||
putStrLn $ T.applyStyles [T.Yellow] $ "> Wrote to file: " <> fromRelDir (basename waspProjectDir) FP.</> path
|
||||
hFlush stdout
|
||||
|
||||
forwardLogToStdout :: GNP.L.LogMsg -> IO ()
|
||||
forwardLogToStdout msg = do
|
||||
putStrLn . T.unpack $ msg
|
||||
putStrLn $ GNP.L.toTermString msg
|
||||
hFlush stdout
|
||||
|
||||
-- | Instead of writing files to disk, it will write files (and logs) to the stdout,
|
||||
@ -97,25 +177,32 @@ createNewProjectNonInteractiveToStdout projectName appDescription projectConfigJ
|
||||
|
||||
liftIO $ generateNewProject codeAgentConfig appName appDescription projectConfig
|
||||
where
|
||||
writeFileToStdoutWithDelimiters :: FilePath -> T.Text -> IO ()
|
||||
writeFileToStdoutWithDelimiters path content =
|
||||
writeToStdoutWithDelimiters "WRITE FILE" [T.pack path, content]
|
||||
writeToStdoutWithDelimiters "WRITE FILE" [path, T.unpack content]
|
||||
|
||||
writeLogToStdoutWithDelimiters :: GNP.L.LogMsg -> IO ()
|
||||
writeLogToStdoutWithDelimiters msg =
|
||||
writeToStdoutWithDelimiters "LOG" [msg]
|
||||
unless (null msg') $
|
||||
writeToStdoutWithDelimiters "LOG" [msg']
|
||||
where
|
||||
msg' = U.trim $ GNP.L.toPlainString msg
|
||||
|
||||
writeToStdoutWithDelimiters :: String -> [String] -> IO ()
|
||||
writeToStdoutWithDelimiters delimiterTitle paragraphs = do
|
||||
T.IO.putStrLn . ("\n" <>) $ withDelimiter delimiterTitle $ T.intercalate "\n" paragraphs
|
||||
putStrLn . ("\n" <>) $ withDelimiter delimiterTitle $ intercalate "\n" paragraphs
|
||||
hFlush stdout
|
||||
|
||||
withDelimiter :: String -> String -> String
|
||||
withDelimiter title content =
|
||||
T.intercalate
|
||||
intercalate
|
||||
"\n"
|
||||
[ "==== WASP AI: " <> title <> " ====",
|
||||
content,
|
||||
"===/ WASP AI: " <> title <> " ===="
|
||||
]
|
||||
|
||||
generateNewProject :: CA.CodeAgentConfig -> NewProjectAppName -> String -> NewProjectConfig -> IO ()
|
||||
generateNewProject :: CA.CodeAgentConfig GNP.L.LogMsg -> NewProjectAppName -> String -> NewProjectConfig -> IO ()
|
||||
generateNewProject codeAgentConfig (NewProjectAppName appName) appDescription projectConfig = do
|
||||
waspProjectSkeletonFiles <- readWaspProjectSkeletonFiles
|
||||
CA.runCodeAgent codeAgentConfig $ do
|
||||
@ -123,9 +210,12 @@ generateNewProject codeAgentConfig (NewProjectAppName appName) appDescription pr
|
||||
|
||||
getOpenAIApiKey :: Command OpenAIApiKey
|
||||
getOpenAIApiKey =
|
||||
liftIO (lookupEnv "OPENAI_API_KEY")
|
||||
liftIO (lookupEnv "OPENAI_API_KEY" <&> (>>= validateKey))
|
||||
>>= maybe throwMissingOpenAIApiKeyEnvVarError pure
|
||||
where
|
||||
validateKey "" = Nothing
|
||||
validateKey k = Just k
|
||||
|
||||
throwMissingOpenAIApiKeyEnvVarError =
|
||||
throwError $
|
||||
CommandError
|
||||
@ -133,9 +223,13 @@ getOpenAIApiKey =
|
||||
$ unlines
|
||||
[ "Wasp AI uses ChatGPT to generate your project, and therefore requires you to provide it with an OpenAI API key.",
|
||||
"You can obtain this key via your OpenAI account's user settings (https://platform.openai.com/account/api-keys).",
|
||||
"Then, add",
|
||||
"Then, set OPENAI_API_KEY env var to it and wasp CLI will read from it.",
|
||||
"",
|
||||
"To persist the OPENAI_API_KEY env var, add",
|
||||
" export OPENAI_API_KEY=<yourkeyhere>",
|
||||
"to .bash_profile or .profile, restart your shell, and you should be good to go."
|
||||
"to your .bash_profile (or .profile or .zprofile or whatever your machine is using), restart your shell, and you should be good to go.",
|
||||
"",
|
||||
"Alternatively, you can go to our Mage web app at https://usemage.ai and generate new Wasp app there for free, with no OpenAI API keys needed."
|
||||
]
|
||||
|
||||
newProjectDetails :: NewProjectConfig -> String -> String -> NewProjectDetails
|
||||
|
@ -1,15 +1,42 @@
|
||||
module Wasp.Cli.Command.CreateNewProject.Common where
|
||||
module Wasp.Cli.Command.CreateNewProject.Common
|
||||
( throwProjectCreationError,
|
||||
throwInvalidTemplateNameUsedError,
|
||||
defaultWaspVersionBounds,
|
||||
printGettingStartedInstructions,
|
||||
)
|
||||
where
|
||||
|
||||
import Control.Monad.Except (throwError)
|
||||
import StrongPath (Abs, Dir, Path')
|
||||
import qualified StrongPath as SP
|
||||
import Wasp.Cli.Command (Command, CommandError (..))
|
||||
import Wasp.Cli.Common (WaspProjectDir)
|
||||
import qualified Wasp.SemanticVersion as SV
|
||||
import qualified Wasp.Util.Terminal as Term
|
||||
import qualified Wasp.Version as WV
|
||||
|
||||
throwProjectCreationError :: String -> Command a
|
||||
throwProjectCreationError = throwError . CommandError "Project creation failed"
|
||||
|
||||
throwInvalidTemplateNameUsedError :: Command a
|
||||
throwInvalidTemplateNameUsedError = throwProjectCreationError "Are you sure that the template exists? 🤔 Check the list of templates here: https://github.com/wasp-lang/starters"
|
||||
throwInvalidTemplateNameUsedError =
|
||||
throwProjectCreationError $
|
||||
"Are you sure that the template exists?"
|
||||
<> " 🤔 Check the list of templates here: https://github.com/wasp-lang/starters"
|
||||
|
||||
defaultWaspVersionBounds :: String
|
||||
defaultWaspVersionBounds = show (SV.backwardsCompatibleWith WV.waspVersion)
|
||||
|
||||
-- | This function assumes that the project dir is created inside the current working directory
|
||||
-- when it prints the instructions.
|
||||
printGettingStartedInstructions :: Path' Abs (Dir WaspProjectDir) -> IO ()
|
||||
printGettingStartedInstructions absProjectDir = do
|
||||
let projectFolder = init . SP.toFilePath . SP.basename $ absProjectDir
|
||||
{- ORMOLU_DISABLE -}
|
||||
putStrLn $ Term.applyStyles [Term.Green] $ "Created new Wasp app in ./" ++ projectFolder ++ " directory!"
|
||||
putStrLn "To run it, do:"
|
||||
putStrLn ""
|
||||
putStrLn $ Term.applyStyles [Term.Bold] $ " cd " ++ projectFolder
|
||||
putStrLn $ Term.applyStyles [Term.Bold] " wasp start"
|
||||
putStrLn ""
|
||||
{- ORMOLU_ENABLE -}
|
||||
|
@ -12,6 +12,7 @@ where
|
||||
|
||||
import Data.Either (fromRight)
|
||||
import Data.Foldable (find)
|
||||
import Data.List (isPrefixOf)
|
||||
import Data.Text (Text)
|
||||
import StrongPath (File', Path, Rel, System, reldir, (</>))
|
||||
import qualified Wasp.Cli.Command.CreateNewProject.StarterTemplates.Remote.Github as Github
|
||||
@ -38,12 +39,12 @@ instance Show StarterTemplate where
|
||||
show (LocalStarterTemplate metadata) = _name metadata
|
||||
show AiGeneratedStarterTemplate = "ai-generated"
|
||||
|
||||
instance Interactive.Option StarterTemplate where
|
||||
instance Interactive.IsOption StarterTemplate where
|
||||
showOption = show
|
||||
showOptionDescription (RemoteStarterTemplate metadata) = Just $ _description metadata
|
||||
showOptionDescription (LocalStarterTemplate metadata) = Just $ _description metadata
|
||||
showOptionDescription AiGeneratedStarterTemplate =
|
||||
Just "[experimental] Describe an app in a couple of sentences and have ChatGPT generate initial code for you."
|
||||
Just "🤖 Describe an app in a couple of sentences and have Wasp AI generate initial code for you. (experimental)"
|
||||
|
||||
getStarterTemplates :: IO [StarterTemplate]
|
||||
getStarterTemplates = do
|
||||
|
@ -3,7 +3,9 @@
|
||||
module Wasp.Cli.Interactive
|
||||
( askForInput,
|
||||
askToChoose,
|
||||
askToChoose',
|
||||
askForRequiredInput,
|
||||
IsOption (..),
|
||||
Option (..),
|
||||
)
|
||||
where
|
||||
@ -11,7 +13,7 @@ where
|
||||
import Control.Applicative ((<|>))
|
||||
import Data.Foldable (find)
|
||||
import Data.Function ((&))
|
||||
import Data.List (intercalate)
|
||||
import Data.List (intercalate, isPrefixOf)
|
||||
import Data.List.NonEmpty (NonEmpty ((:|)))
|
||||
import qualified Data.List.NonEmpty as NE
|
||||
import qualified Data.Text as T
|
||||
@ -37,22 +39,35 @@ import qualified Wasp.Util.Terminal as Term
|
||||
We want to avoid this so users can type the name of the option when answering
|
||||
without having to type the quotes as well.
|
||||
|
||||
We introduced the Option class to get different "show" behavior for Strings and other
|
||||
types. If we are using something other then String, an instance of Option needs to be defined,
|
||||
We introduced the IsOption class to get different "show" behavior for Strings and other
|
||||
types. If we are using something other then String, an instance of IsOption needs to be defined,
|
||||
but for Strings it just returns the String itself.
|
||||
-}
|
||||
class Option o where
|
||||
class IsOption o where
|
||||
showOption :: o -> String
|
||||
showOptionDescription :: o -> Maybe String
|
||||
|
||||
instance Option [Char] where
|
||||
instance IsOption [Char] where
|
||||
showOption = id
|
||||
showOptionDescription = const Nothing
|
||||
|
||||
data Option o = Option
|
||||
{ oDisplayName :: !String,
|
||||
oDescription :: !(Maybe String),
|
||||
oValue :: !o
|
||||
}
|
||||
|
||||
instance IsOption (Option o) where
|
||||
showOption = oDisplayName
|
||||
showOptionDescription = oDescription
|
||||
|
||||
askForRequiredInput :: String -> IO String
|
||||
askForRequiredInput = repeatIfNull . askForInput
|
||||
|
||||
askToChoose :: forall o. Option o => String -> NonEmpty o -> IO o
|
||||
askToChoose' :: String -> NonEmpty (Option o) -> IO o
|
||||
askToChoose' question options = oValue <$> askToChoose question options
|
||||
|
||||
askToChoose :: forall o. IsOption o => String -> NonEmpty o -> IO o
|
||||
askToChoose _ (singleOption :| []) = return singleOption
|
||||
askToChoose question options = do
|
||||
putStrLn $ Term.applyStyles [Term.Bold] question
|
||||
@ -83,18 +98,26 @@ askToChoose question options = do
|
||||
showIndexedOptions = intercalate "\n" $ showIndexedOption <$> zip [1 ..] (NE.toList options)
|
||||
where
|
||||
showIndexedOption (idx, option) =
|
||||
Term.applyStyles [Term.Yellow] indexPrefix
|
||||
<> Term.applyStyles [Term.Bold] (showOption option)
|
||||
<> (if isDefaultOption option then " (default)" else "")
|
||||
<> showDescription option (length indexPrefix)
|
||||
concat
|
||||
[ indexPrefix,
|
||||
optionName,
|
||||
tags,
|
||||
optionDescription
|
||||
]
|
||||
where
|
||||
indexPrefix = showIndex idx <> " "
|
||||
indexPrefix = Term.applyStyles [Term.Yellow] (showIndex idx) <> " "
|
||||
optionName = Term.applyStyles [Term.Bold] (showOption option)
|
||||
tags = whenDefault (Term.applyStyles [Term.Yellow] " (default)")
|
||||
optionDescription = showDescription (idx, option)
|
||||
whenDefault xs = if isDefaultOption option then xs else mempty
|
||||
|
||||
showIndex i = "[" ++ show (i :: Int) ++ "]"
|
||||
showIndex idx = "[" ++ show (idx :: Int) ++ "]"
|
||||
|
||||
showDescription option indentLength = case showOptionDescription option of
|
||||
showDescription (idx, option) = case showOptionDescription option of
|
||||
Just description -> "\n" <> replicate indentLength ' ' <> description
|
||||
Nothing -> ""
|
||||
where
|
||||
indentLength = length (showIndex idx) + 1
|
||||
|
||||
defaultOption :: o
|
||||
defaultOption = NE.head options
|
||||
|
@ -1,7 +1,7 @@
|
||||
app waspBuild {
|
||||
db: { system: PostgreSQL },
|
||||
wasp: {
|
||||
version: "^0.11.8"
|
||||
version: "^0.12.0"
|
||||
},
|
||||
title: "waspBuild"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
app waspCompile {
|
||||
wasp: {
|
||||
version: "^0.11.8"
|
||||
version: "^0.12.0"
|
||||
},
|
||||
title: "waspCompile"
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
app waspComplexTest {
|
||||
db: { system: PostgreSQL },
|
||||
wasp: {
|
||||
version: "^0.11.8"
|
||||
version: "^0.12.0"
|
||||
},
|
||||
auth: {
|
||||
userEntity: User,
|
||||
|
@ -1,7 +1,7 @@
|
||||
app waspJob {
|
||||
db: { system: PostgreSQL },
|
||||
wasp: {
|
||||
version: "^0.11.8"
|
||||
version: "^0.12.0"
|
||||
},
|
||||
title: "waspJob"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
app waspMigrate {
|
||||
wasp: {
|
||||
version: "^0.11.8"
|
||||
version: "^0.12.0"
|
||||
},
|
||||
title: "waspMigrate"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
app waspNew {
|
||||
wasp: {
|
||||
version: "^0.11.8"
|
||||
version: "^0.12.0"
|
||||
},
|
||||
title: "waspNew"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
app todoApp {
|
||||
wasp: {
|
||||
version: "^0.11.0"
|
||||
version: "^0.12.0"
|
||||
},
|
||||
title: "ToDo App",
|
||||
// head: [],
|
||||
|
@ -1,6 +1,6 @@
|
||||
app todoApp {
|
||||
wasp: {
|
||||
version: "^0.11.0"
|
||||
version: "^0.12.0"
|
||||
},
|
||||
title: "ToDo App",
|
||||
dependencies: [
|
||||
|
2
waspc/packages/prisma/package-lock.json
generated
@ -10,7 +10,7 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"json5": "^2.2.3",
|
||||
"prisma": "^4.12.0",
|
||||
"prisma": "^4.16.2",
|
||||
"strip-ansi": "^6.0.0",
|
||||
"tmp-promise": "3.0.3"
|
||||
},
|
||||
|
@ -21,8 +21,8 @@ import Control.Monad.IO.Class (MonadIO (liftIO))
|
||||
import Control.Monad.Reader (MonadReader, ReaderT (runReaderT), asks)
|
||||
import Control.Monad.State (MonadState, StateT (runStateT), gets, modify)
|
||||
import qualified Data.HashMap.Strict as H
|
||||
import Data.String (IsString (fromString))
|
||||
import Data.Text (Text)
|
||||
import qualified Data.Text as T
|
||||
import qualified Network.HTTP.Simple as HTTP
|
||||
import System.IO (hPutStrLn, stderr)
|
||||
import UnliftIO (Handler (Handler), catches, throwIO)
|
||||
@ -35,33 +35,33 @@ import qualified Wasp.Util.IO.Retry as R
|
||||
import Wasp.Util.Network.HTTP (catchRetryableHttpException)
|
||||
import qualified Wasp.Util.Network.HTTP as Utils.HTTP
|
||||
|
||||
newtype CodeAgent a = CodeAgent {_unCodeAgent :: ReaderT CodeAgentConfig (StateT CodeAgentState IO) a}
|
||||
deriving (Monad, Applicative, Functor, MonadIO, MonadReader CodeAgentConfig, MonadState CodeAgentState)
|
||||
newtype CodeAgent logMsg a = CodeAgent {_unCodeAgent :: ReaderT (CodeAgentConfig logMsg) (StateT CodeAgentState IO) a}
|
||||
deriving (Monad, Applicative, Functor, MonadIO, MonadReader (CodeAgentConfig logMsg), MonadState CodeAgentState)
|
||||
|
||||
data CodeAgentConfig = CodeAgentConfig
|
||||
data CodeAgentConfig logMsg = CodeAgentConfig
|
||||
{ _openAIApiKey :: !OpenAIApiKey,
|
||||
_writeFile :: !(FilePath -> Text -> IO ()), -- TODO: Use StrongPath? Not clear which kind of path is it, rel, abs, ... .
|
||||
_writeLog :: !(Text -> IO ())
|
||||
_writeLog :: !(logMsg -> IO ())
|
||||
}
|
||||
|
||||
instance MonadRetry CodeAgent where
|
||||
instance MonadRetry (CodeAgent logMsg) where
|
||||
rThreadDelay = liftIO . threadDelay
|
||||
|
||||
runCodeAgent :: CodeAgentConfig -> CodeAgent a -> IO a
|
||||
runCodeAgent :: (IsString logMsg) => CodeAgentConfig logMsg -> CodeAgent logMsg a -> IO a
|
||||
runCodeAgent config codeAgent =
|
||||
(fst <$> (_unCodeAgent codeAgent `runReaderT` config) `runStateT` initialState)
|
||||
`catches` [ Handler
|
||||
( \(e :: HTTP.HttpException) -> do
|
||||
let errorInfo =
|
||||
maybe (showShortException e) show $ Utils.HTTP.getHttpExceptionStatusCode e
|
||||
logMsg = T.pack $ "Code agent failed with the http error: " <> errorInfo
|
||||
logMsg = fromString $ "Code agent failed with the http error: " <> errorInfo
|
||||
_writeLog config logMsg
|
||||
throwIO e
|
||||
),
|
||||
Handler
|
||||
( \(e :: SomeException) -> do
|
||||
_writeLog config $
|
||||
"Code agent failed with the following error: " <> T.pack (showShortException e)
|
||||
fromString $ "Code agent failed with the following error: " <> showShortException e
|
||||
throwIO e
|
||||
)
|
||||
]
|
||||
@ -78,26 +78,26 @@ runCodeAgent config codeAgent =
|
||||
showShortException :: forall e. Exception e => e -> String
|
||||
showShortException = shortenWithEllipsisTo 30 . displayException
|
||||
|
||||
writeToLog :: Text -> CodeAgent ()
|
||||
writeToLog :: IsString logMsg => logMsg -> CodeAgent logMsg ()
|
||||
writeToLog msg = asks _writeLog >>= \f -> liftIO $ f msg
|
||||
|
||||
writeToFile :: FilePath -> (Maybe Text -> Text) -> CodeAgent ()
|
||||
writeToFile :: FilePath -> (Maybe Text -> Text) -> CodeAgent logMsg ()
|
||||
writeToFile path updateContentFn = do
|
||||
content <- updateContentFn <$> getFile path
|
||||
asks _writeFile >>= \f -> liftIO $ f path content
|
||||
modify $ \s -> s {_files = H.insert path content (_files s)}
|
||||
|
||||
writeNewFile :: (FilePath, Text) -> CodeAgent ()
|
||||
writeNewFile :: (FilePath, Text) -> CodeAgent logMsg ()
|
||||
writeNewFile (path, content) =
|
||||
writeToFile path (maybe content $ error $ "file " <> path <> " shouldn't already exist")
|
||||
|
||||
getFile :: FilePath -> CodeAgent (Maybe Text)
|
||||
getFile :: FilePath -> CodeAgent logMsg (Maybe Text)
|
||||
getFile path = gets $ H.lookup path . _files
|
||||
|
||||
getAllFiles :: CodeAgent [(FilePath, Text)]
|
||||
getAllFiles :: CodeAgent logMsg [(FilePath, Text)]
|
||||
getAllFiles = gets $ H.toList . _files
|
||||
|
||||
queryChatGPT :: ChatGPTParams -> [ChatMessage] -> CodeAgent Text
|
||||
queryChatGPT :: ChatGPTParams -> [ChatMessage] -> CodeAgent logMsg Text
|
||||
queryChatGPT params messages = do
|
||||
key <- asks _openAIApiKey
|
||||
chatResponse <- queryChatGPTWithRetry key params messages
|
||||
@ -105,7 +105,7 @@ queryChatGPT params messages = do
|
||||
return $ ChatGPT.getChatResponseContent chatResponse
|
||||
where
|
||||
{- ORMOLU_DISABLE -}
|
||||
queryChatGPTWithRetry :: OpenAIApiKey -> ChatGPTParams -> [ChatMessage] -> CodeAgent ChatResponse
|
||||
queryChatGPTWithRetry :: OpenAIApiKey -> ChatGPTParams -> [ChatMessage] -> CodeAgent logMsg ChatResponse
|
||||
queryChatGPTWithRetry key params' messages' =
|
||||
do
|
||||
R.retry
|
||||
@ -123,13 +123,13 @@ queryChatGPT params messages = do
|
||||
>>= either throwIO pure
|
||||
{- ORMOLU_ENABLE -}
|
||||
|
||||
getOpenAIApiKey :: CodeAgent OpenAIApiKey
|
||||
getOpenAIApiKey :: CodeAgent logMsg OpenAIApiKey
|
||||
getOpenAIApiKey = asks _openAIApiKey
|
||||
|
||||
type NumTokens = Int
|
||||
|
||||
-- | Returns total tokens usage: (<num_prompt_tokens>, <num_completion_tokens>).
|
||||
getTotalTokensUsage :: CodeAgent (NumTokens, NumTokens)
|
||||
getTotalTokensUsage :: CodeAgent logMsg (NumTokens, NumTokens)
|
||||
getTotalTokensUsage = do
|
||||
usage <- gets _usage
|
||||
let numPromptTokens = sum $ ChatGPT.prompt_tokens <$> usage
|
||||
|