Add initial project setup with environment variables, server logic, and memory handling

This commit is contained in:
ImBenji
2025-10-23 15:36:45 +01:00
commit b61be346bb
9 changed files with 1012 additions and 0 deletions

9
deno.json Normal file
View File

@@ -0,0 +1,9 @@
{
"nodeModulesDir": "auto",
"imports": {
"openai": "npm:openai@4"
},
"tasks": {
"serve": "deno run --allow-all supabase/functions/llm-pipeline/index.ts"
}
}