This commit is contained in:
2025-01-21 18:17:50 +01:00
parent b7ad987a49
commit ec1e3fa810
2 changed files with 7 additions and 10 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ function App() {
(async function() {
setCode('');
const response = await fetch(`${import.meta.env.VITE_API_URL}/generate?lang=go&lines=10`);
const response = await fetch(`${import.meta.env.VITE_API_URL}/generate?lang=ocaml&lines=20`);
const reader = response.body.getReader();
const decoder = new TextDecoder();