1export function myApi(name) {
2 return "hi " + name;
3}
4 <html>
5 <h1>Welcome</h1>
6 <form action="https://api.val.town/express/@nikita.site" method="post">
7 <label>Email
8 <input type="text" name="email"/>
101 if (options.enableToggle) {
102 text.push(
103 `toggle: https://api.val.town/eval/@${username}.toggleSubreddits(%22${subreddit}%22)`
104 );
105 }
1export function myApi(name) {
2 return "hi " + name;
3}
1export function api500(req: express.Request, res: express.Response) {
2 res.status(503);
3 res.json({
1export function api400(req: express.Request, res: express.Response) {
2 res.status(400);
3 res.json({
27 const chat = new ChatOpenAI({
28 modelName: "gpt-3.5-turbo",
29 openAIApiKey: process.env.OPEN_API_KEY,
30 streaming: true,
31 callbacks: [{
36 const vectorStore = await SupabaseVectorStore.fromExistingIndex(
37 new OpenAIEmbeddings({
38 openAIApiKey: process.env.OPEN_API_KEY,
39 }),
40 {
1export function myApi(name) {
2 return "hi " + name;
3}
1import { myApi } from "https://esm.town/v/blainandsimple/myApi?v=3";
2
3export let untitled_apricotTortoise = myApi("Rodrigo");
113 scoreboard.push({ name, score });
114
115 // Call the function to update the scoreboard on the Val Town API
116 updateScoreboard(name, score);
117 }
118
119 function updateScoreboard(name, score) {
120 const apiUrl =
121 "https://api.val.town/v1/run/rodrigotello.updateDinoScoreboard";
122
123 fetch(apiUrl, {
124 method: "POST",
125 headers: {
158
159 // Fetch the latest scoreboard data
160 const apiUrl =
161 "https://api.val.town/v1/run/rodrigotello.dinoGameScoreboard";
162
163 // Sort the scoreboard by score in descending order