Spaces:
Running
Running
File size: 1,091 Bytes
ea4c342 296b17c ea4c342 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import { gradioDoc } from "./gradioDoc.mts"
export function getFlutterApp(prompt: string) {
const prefix = "# In main.dart:\n```"
const instructions = [
{
role: "system",
content: [
`You are a Dart developer, expert at crafting Flutter applications.
You must generate valid Dart code. Don't forget the requirements.txt files!`,
`Here is an example of a Flutter application:`,
gradioDoc
].filter(item => item).join("\n")
},
{
role: "user",
content: `Please write, file by file, the source code for a Flutter project.
There is already a project with this structure:
- lib/main.dart
- pubspec.yaml
- cooking_llama.iml
DO NOT WRITE AN EXAMPLE! WRITE THE FULL CODE, NOT AN EXAMPLE.
You must not leave any TODO in the code.
Don't forget to write a README.md with the following header, or else you will be FIRED:
\`\`\`
---
license: apache-2.0
title: <app name>
sdk: docker
emoji: π
colorFrom: green
colorTo: blue
---
\`\`\`
The app is about: ${prompt}`,
}
]
return { prefix, files: [], instructions }
} |