Spaces:
Running
Running
File size: 2,340 Bytes
9c9e5d3 d4febae b93a813 d4febae b93a813 9c9e5d3 d4febae 9c9e5d3 d4febae b93a813 d4febae 9c9e5d3 d4febae 9c9e5d3 d4febae 9c9e5d3 d4febae 9c9e5d3 d4febae 9c9e5d3 d4febae 9c9e5d3 b93a813 9c9e5d3 |
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
import { HfInference } from '@huggingface/inference'
import { RepoFile } from './types.mts'
import { createLlamaPrompt } from './createLlamaPrompt.mts'
import { parseTutorial } from './parseTutorial.mts'
import { getPythonApp} from './getPythonApp.mts'
import { getWebApp } from './getWebApp.mts'
import { getReactApp } from './getReactApp.mts'
import { isPythonAppPrompt } from './isPythonAppPrompt.mts'
import { isReactAppPrompt } from './isReactAppPrompt.mts'
export const generateFiles = async (prompt: string, token: string) => {
if (`${prompt}`.length < 2) {
throw new Error(`prompt too short, please enter at least ${prompt} characters`)
}
const { prefix, instructions } =
isPythonAppPrompt(prompt)
? getPythonApp(prompt)
: isReactAppPrompt(prompt)
? getReactApp(prompt)
: getWebApp(prompt)
const inputs = createLlamaPrompt(instructions) + "\nSure! Here are the source files:\n" + prefix
let tutorial = prefix
try {
const hf = new HfInference(token)
for await (const output of hf.textGenerationStream({
// model: "tiiuae/falcon-180B-chat",
model: "codellama/CodeLlama-34b-Instruct-hf",
inputs,
parameters: {
do_sample: true,
// for "codellama/CodeLlama-34b-Instruct-hf":
// `inputs` tokens + `max_new_tokens` must be <= 8192
// error: `inputs` must have less than 4096 tokens.
// for "tiiuae/falcon-180B-chat":
// `inputs` tokens + `max_new_tokens` must be <= 8192
// error: `inputs` must have less than 4096 tokens.
max_new_tokens: 4096,
return_full_text: false,
}
})) {
tutorial += output.token.text
process.stdout.write(output.token.text)
// res.write(output.token.text)
if (tutorial.includes('<|end|>')
|| tutorial.includes('[ENDINSTRUCTION]')
|| tutorial.includes('[/TASK]')
|| tutorial.includes('<|assistant|>')) {
break
}
}
} catch (e) {
console.log("failed:")
console.log(e)
}
console.log("analyzing the generated instructions..")
const files = parseTutorial(tutorial).map(({ filename, content }) => ({
path: `${filename || ""}`.trim().replace(" ", ""),
content: `${content || ""}`
} as RepoFile))
.filter(res => res.path.length && res.content.length)
return files
} |