Val Town Code SearchReturn to Val Town

API Access

You can access search results via JSON API by adding format=json to your query:

https://codesearch.val.run/...?q=openai&page=7&format=json

For typeahead suggestions, use the /typeahead endpoint:

https://codesearch.val.run/typeahead?q=openai

Returns an array of strings in format "username" or "username/projectName"

Found 2231 results for "openai"(2390ms)

openAiFreeUsage2 file matches

@patrickjm•Updated 1 year ago

openaiOpenAPI2 file matches

@stevekrouse•Updated 1 year ago

openAiTextCompletion2 file matches

@patrickjm•Updated 1 year ago

openaiCompletion2 file matches

@fgeierst•Updated 1 year ago

demoOpenAIGPTSummary2 file matches

@zzz•Updated 1 year ago

openAiFreeQuotaExceeded2 file matches

@patrickjm•Updated 1 year ago

demoOpenAIGPT4Summary2 file matches

@zzz•Updated 1 year ago

openAiModeration2 file matches

@patrickjm•Updated 1 year ago

OpenAISummary2 file matches

@zzz•Updated 1 year ago

openaiFineTune2 file matches

@stevekrouse•Updated 1 year ago

honeydewmain.tsx3 matches

@legal•Updated 1 hour ago
1import { OpenAI } from "https://esm.town/v/std/openai";
2
3// --- TYPE DEFINITIONS ---
420
421export default async function(req: Request): Promise<Response> {
422 const openai = new OpenAI();
423 const url = new URL(req.url);
424 const CORS_HEADERS = {
459 }
460
461 const completion = await openai.chat.completions.create({
462 model,
463 messages: [{ role: "system", content: prompt }, { role: "user", content: userContent }],

Todomain.tsx3 matches

@svc•Updated 2 hours ago
1import { OpenAI } from "https://esm.town/v/std/openai";
2
3// --- TYPE DEFINITIONS ---
372
373export default async function(req: Request): Promise<Response> {
374 const openai = new OpenAI();
375 const url = new URL(req.url);
376 const CORS_HEADERS = {
411 }
412
413 const completion = await openai.chat.completions.create({
414 model,
415 messages: [{ role: "system", content: prompt }, { role: "user", content: userContent }],
kwhinnery_openai
reconsumeralization
import { OpenAI } from "https://esm.town/v/std/openai"; import { sqlite } from "https://esm.town/v/stevekrouse/sqlite"; /** * Practical Implementation of Collective Content Intelligence * Bridging advanced AI with collaborative content creation */ exp