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//%22mailto:kurt@sachersolutions.ca/%22?q=openai&page=6&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 3236 results for "openai"(1064ms)

OpenAIUsage2 file matches

@std•Updated 10 months ago

OpenAI2 file matches

@It_FITS_Marketing•Updated 11 months ago

openaiproxy2 file matches

@roadlabs•Updated 11 months ago

OpenAI2 file matches

@hash0000ff•Updated 1 year ago

OpenAI2 file matches

@arthrod•Updated 1 year ago

ownOpenAI2 file matches

@kora•Updated 1 year ago

openaiproxy2 file matches

@mmrech•Updated 1 year ago

openai2 file matches

@willthereader•Updated 1 year ago

OpenAIStreaming2 file matches

@mjweaver01•Updated 1 year ago

openAiProxy2 file matches

@ashryanio•Updated 1 year ago

gatemain.ts3 matches

@know•Updated 1 hour ago
1import { nanoid } from "https://deno.land/x/nanoid@v3.0.0/mod.ts";
2import { blob } from "https://esm.town/v/std/blob?v=11";
3import { OpenAI } from "https://esm.town/v/std/openai?v=4";
4
5const AUDIT_DEPTH_INTERVAL = 2;
40
41// --- BACKEND LOGIC ---
42const openai = new OpenAI();
43
44async function callAI(
47): Promise<Prerequisite[]> {
48 try {
49 const completion = await openai.chat.completions.create({
50 model: "gpt-4o",
51 messages: [

h6-system_prompt.txt4 matches

@werewolf006•Updated 1 hour ago
88Note: When changing a SQLite table's schema, change the table's name (e.g., add _2 or _3) to create a fresh table.
89
90### OpenAI
91
92```ts
93import { OpenAI } from "https://esm.town/v/std/openai";
94const openai = new OpenAI();
95const completion = await openai.chat.completions.create({
96 messages: [
97 { role: "user", content: "Say hello in a creative way" },
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
kwhinnery_openai