blob_adminapp.tsx19 matches
70const menuRef = useRef(null);
71const isPublic = blob.key.startsWith("__public/");
72const publicUrl = isPublic ? `${window.location.origin}/api/public/${encodeURIComponent(blob.key.slice(9))}` : null;
7374useEffect(() => {
234setLoading(true);
235try {
236const response = await fetch(`/api/blobs?prefix=${encodeKey(searchPrefix)}&limit=${limit}`);
237const data = await response.json();
238setBlobs(data);
261setBlobContentLoading(true);
262try {
263const response = await fetch(`/api/blob?key=${encodeKey(clickedBlob.key)}`);
264const content = await response.text();
265setSelectedBlob({ ...clickedBlob, key: decodeKey(clickedBlob.key) });
275const handleSave = async () => {
276try {
277await fetch(`/api/blob?key=${encodeKey(selectedBlob.key)}`, {
278method: "PUT",
279body: editContent,
287const handleDelete = async (key) => {
288try {
289await fetch(`/api/blob?key=${encodeKey(key)}`, { method: "DELETE" });
290setBlobs(blobs.filter(b => b.key !== key));
291if (selectedBlob && selectedBlob.key === key) {
304const key = `${searchPrefix}${file.name}`;
305formData.append("key", encodeKey(key));
306await fetch("/api/blob", { method: "POST", body: formData });
307const newBlob = { key, size: file.size, lastModified: new Date().toISOString() };
308setBlobs([newBlob, ...blobs]);
326try {
327const fullKey = `${searchPrefix}${key}`;
328await fetch(`/api/blob?key=${encodeKey(fullKey)}`, {
329method: "PUT",
330body: "",
341const handleDownload = async (key) => {
342try {
343const response = await fetch(`/api/blob?key=${encodeKey(key)}`);
344const blob = await response.blob();
345const url = window.URL.createObjectURL(blob);
360if (newKey && newKey !== oldKey) {
361try {
362const response = await fetch(`/api/blob?key=${encodeKey(oldKey)}`);
363const content = await response.blob();
364await fetch(`/api/blob?key=${encodeKey(newKey)}`, {
365method: "PUT",
366body: content,
367});
368await fetch(`/api/blob?key=${encodeKey(oldKey)}`, { method: "DELETE" });
369setBlobs(blobs.map(b => b.key === oldKey ? { ...b, key: newKey } : b));
370if (selectedBlob && selectedBlob.key === oldKey) {
380const newKey = `__public/${key}`;
381try {
382const response = await fetch(`/api/blob?key=${encodeKey(key)}`);
383const content = await response.blob();
384await fetch(`/api/blob?key=${encodeKey(newKey)}`, {
385method: "PUT",
386body: content,
387});
388await fetch(`/api/blob?key=${encodeKey(key)}`, { method: "DELETE" });
389setBlobs(blobs.map(b => b.key === key ? { ...b, key: newKey } : b));
390if (selectedBlob && selectedBlob.key === key) {
399const newKey = key.slice(9); // Remove "__public/" prefix
400try {
401const response = await fetch(`/api/blob?key=${encodeKey(key)}`);
402const content = await response.blob();
403await fetch(`/api/blob?key=${encodeKey(newKey)}`, {
404method: "PUT",
405body: content,
406});
407await fetch(`/api/blob?key=${encodeKey(key)}`, { method: "DELETE" });
408setBlobs(blobs.map(b => b.key === key ? { ...b, key: newKey } : b));
409if (selectedBlob && selectedBlob.key === key) {
554onClick={() =>
555copyToClipboard(
556`${window.location.origin}/api/public/${encodeURIComponent(selectedBlob.key.slice(9))}`,
557)}
558className="text-blue-400 hover:text-blue-300 text-sm"
577>
578<img
579src={`/api/blob?key=${encodeKey(selectedBlob.key)}`}
580alt="Blob content"
581className="max-w-full h-auto"
rationalWhiteScorpionREADME.md4 matches
1# Val Town REST API TypeScript SDK Demos
23This val demonstrates basic usage of the the Val Town JS/TS SDK.
5You can fork this val to your account to quickly try it out.
67Authentication is automatically set by the `VAL_TOWN_API_KEY` environment
8variable, which is automatically set within Val Town. You can control the
9API scopes of that key in your val's settings page.
1011* [Learn more](https://docs.val.town/sdk/)
12* [Reference docs](https://github.com/val-town/sdk/blob/main/api.md)
1export default async (c, next) => {
2const secret = c.req.header("x-api-key");
3const method = c.req.method;
4if (secret !== Deno.env.get("X_API_KEY") && method !== "GET") {
5return c.text("Unauthorized", 401);
6}
1# Val Town REST API TypeScript SDK Demos
23This val demonstrates basic usage of the the Val Town JS/TS SDK.
5You can fork this val to your account to quickly try it out.
67Authentication is automatically set by the `VAL_TOWN_API_KEY` environment
8variable, which is automatically set within Val Town. You can control the
9API scopes of that key in your val's settings page.
1011* [Learn more](https://docs.val.town/sdk/)
12* [Reference docs](https://github.com/val-town/sdk/blob/main/api.md)
8687/**
88* Format chat history for Anthropic API
89*/
90function formatChatHistoryForAI(history) {
314bot.on("message", async (ctx) => {
315try {
316// Get Anthropic API key from environment
317const apiKey = Deno.env.get("ANTHROPIC_API_KEY");
318if (!apiKey) {
319console.error("Anthropic API key is not configured.");
320ctx.reply(
321"I apologize, but I'm not properly configured at the moment. Please inform the household administrator.",
325326// Initialize Anthropic client
327const anthropic = new Anthropic({ apiKey });
328329// Get message text and user info
491// Set webhook if it is not set yet
492if (!isEndpointSet) {
493await bot.api.setWebhook(req.url, {
494secret_token: SECRET_TOKEN,
495});
weatherForecastmain.tsx7 matches
2import { OpenAI } from "https://esm.town/v/std/openai";
34// Constants for location and API base URL
5const LATITUDE: number = 45.6333;
6const LONGITUDE: number = 8.9167;
7const OPEN_METEO_BASE_URL: string = "https://api.open-meteo.com/v1/forecast";
89// Telegram Bot Configuration
4243/**
44* Interface for OpenMeteo API weather response
45*/
46interface OpenMeteoWeatherResponse {
66/**
67* Interprets OpenMeteo weather codes into human-readable descriptions
68* @param code Numeric weather code from OpenMeteo API
69* @returns Object with description and emoji representation
70*/
101102/**
103* Build detailed weather information from OpenMeteo API response
104* @param weatherData Raw weather data from OpenMeteo
105* @returns Structured WeatherDetails object
148role: "system",
149content:
150"Sei un esperto di meteorologia. Il tuo compito è riassumere i dati forniti in formato JSON dalle API di Open-meteo.com in modo simpatico e comprensibile. I dati contengono le condizioni meteo attuali e il forecast dell'intera giornata, spalmati su 24 ore. Usa un tono colloquiale e due o tre frasi al massimo per il riassunto.",
151},
152{
188})
189.then(summary => {
190bot.api.sendMessage(CHAT_ID, summary);
191});
192}
166bot.on("message", async (ctx) => {
167try {
168const OPENAI_KEY = Deno.env.get("OPENAI_API_KEY");
169if (!OPENAI_KEY) {
170console.error("OPENAI_API_KEY is not configured.");
171await ctx.reply("I apologize, but I am not properly configured at present.");
172return;
173}
174175const openai = new OpenAI({ apiKey: OPENAI_KEY });
176177const messageText = ctx.message.text ?? "";
263export default async function(req: Request): Promise<Response> {
264if (!isEndpointSet) {
265await bot.api.setWebhook(req.url, { secret_token: SECRET_TOKEN });
266isEndpointSet = true;
267}
stevens-openaigenerateFunFacts.ts4 matches
66// -----------------------------------------------------------------------------
67async function generateFunFacts(previousFacts: { date: string; text: string }[]) {
68const apiKey = Deno.env.get("OPENAI_API_KEY");
69if (!apiKey) {
70console.error("OPENAI_API_KEY is not configured.");
71return [];
72}
7374const openai = new OpenAI({ apiKey });
7576// Build auxiliary strings for the prompt
stevens-openaigetWeather.ts4 matches
26*/
27async function generateConciseWeatherSummary(weatherDay: ReturnType<typeof summarizeWeather>[number]) {
28const apiKey = Deno.env.get("OPENAI_API_KEY");
29if (!apiKey) {
30console.error("OPENAI_API_KEY is not configured.");
31return null;
32}
3334const openai = new OpenAI({ apiKey });
3536const systemPrompt = `You are a weather forecaster. Create a very concise summary of a day's forecast.`;
stevens-openaisendDailyBrief.ts6 matches
96today?: DateTime,
97) {
98// Get API keys from environment
99const apiKey = Deno.env.get("OPENAI_API_KEY");
100const telegramToken = Deno.env.get("TELEGRAM_TOKEN");
101105}
106107if (!apiKey) {
108console.error("OPENAI_API_KEY is not configured.");
109return;
110}
121122// Initialize OpenAI client
123const openai = new OpenAI({ apiKey });
124125// Initialize Telegram bot
152153const sendChunk = async (chunk: string) => {
154await bot.api.sendMessage(chatId!, chunk, { parse_mode: "Markdown" });
155await storeChatMessage(chatId!, BOT_SENDER_ID, BOT_SENDER_NAME, chunk, true);
156};