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=38&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 2273 results for "openai"(1253ms)

Townie2system_prompt.txt4 matches

@toowired•Updated 2 weeks 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" },

Townie2.cursorrules4 matches

@toowired•Updated 2 weeks ago
94Note: When changing a SQLite table's schema, change the table's name (e.g., add _2 or _3) to create a fresh table.
95
96### OpenAI
97
98```ts
99import { OpenAI } from "https://esm.town/v/std/openai";
100const openai = new OpenAI();
101const completion = await openai.chat.completions.create({
102 messages: [
103 { role: "user", content: "Say hello in a creative way" },

Towniesystem_prompt.txt4 matches

@c15r•Updated 2 weeks 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" },

Townie.cursorrules4 matches

@c15r•Updated 2 weeks ago
94Note: When changing a SQLite table's schema, change the table's name (e.g., add _2 or _3) to create a fresh table.
95
96### OpenAI
97
98```ts
99import { OpenAI } from "https://esm.town/v/std/openai";
100const openai = new OpenAI();
101const completion = await openai.chat.completions.create({
102 messages: [
103 { role: "user", content: "Say hello in a creative way" },

ASKNOVAREADME.md3 matches

@Abdullah7826•Updated 2 weeks ago
7- 🎨 Modern Neumorphism/Dark Mode design with theme toggle
8- 💬 Real-time chat interface with typing indicators
9- 🤖 OpenAI GPT integration with fallback mock responses
10- 📱 Fully responsive design (mobile/tablet/desktop)
11- ✨ Smooth animations and micro-interactions
41## Environment Variables
42
43- `OPENAI_API_KEY` - OpenAI API key (optional, falls back to mock responses)
44
45## Usage
63
64✅ **AI Integration**
65- OpenAI GPT-4o-mini integration with fallback mock responses
66- Context-aware conversations (sends last 10 messages)
67- Intelligent mock responses for demo purposes

ASKNOVAindex.ts8 matches

@Abdullah7826•Updated 2 weeks ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { readFile, serveFile } from "https://esm.town/v/std/utils@85-main/index.ts";
3import { OpenAI } from "https://esm.town/v/std/openai";
4import type { ChatRequest, ChatResponse, Message } from "../shared/types.ts";
5
49 let responseMessage = "";
50
51 // Try to use OpenAI if API key is available
52 const openaiKey = Deno.env.get('OPENAI_API_KEY');
53
54 if (openaiKey) {
55 try {
56 const openai = new OpenAI();
57
58 // Build conversation context
72 ];
73
74 const completion = await openai.chat.completions.create({
75 model: "gpt-4o-mini",
76 messages,
80
81 responseMessage = completion.choices[0]?.message?.content || "I'm sorry, I couldn't generate a response.";
82 } catch (openaiError) {
83 console.error("OpenAI API error:", openaiError);
84 // Fall back to mock response
85 responseMessage = getMockResponse(message);

untitled-2461project-ring-vision.tsx3 matches

@syskaul•Updated 2 weeks ago
1export default async function(req: Request): Promise<Response> {
2 // This will be our OpenAI Vision API integration
3 // For now, just a placeholder that shows we're ready
4
5 return new Response(
6 JSON.stringify({
7 message: "OpenAI Vision API integration ready",
8 status: "placeholder",
9 required_env_vars: [
10 "OPENAI_API_KEY",
11 ],
12 next_features: [

token-servermain.ts3 matches

@kwhinnery_openai•Updated 2 weeks ago
1const OPENAI_API_KEY = Deno.env.get("OPENAI_API_KEY");
2
3export async function handler(request: Request) {
4 const response = await fetch("https://api.openai.com/v1/realtime/sessions", {
5 method: "POST",
6 headers: {
7 "Content-Type": "application/json",
8 Authorization: `Bearer ${OPENAI_API_KEY}`,
9 },
10 body: JSON.stringify({

Towniesystem_prompt.txt4 matches

@charmaine•Updated 3 weeks 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" },

Townie.cursorrules4 matches

@charmaine•Updated 3 weeks ago
94Note: When changing a SQLite table's schema, change the table's name (e.g., add _2 or _3) to create a fresh table.
95
96### OpenAI
97
98```ts
99import { OpenAI } from "https://esm.town/v/std/openai";
100const openai = new OpenAI();
101const completion = await openai.chat.completions.create({
102 messages: [
103 { role: "user", content: "Say hello in a creative way" },

openai-client4 file matches

@cricks_unmixed4u•Updated 50 mins ago

openai_enrichment6 file matches

@stevekrouse•Updated 2 weeks ago
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