nueva edge function para la generación de sugerencais de asignaturas con IA
This commit is contained in:
@@ -93,6 +93,7 @@ export type Database = {
|
||||
asignatura_hash: string | null;
|
||||
codigo: string | null;
|
||||
contenido_tematico: Json;
|
||||
conversation_id: string | null;
|
||||
creado_en: string;
|
||||
creado_por: string | null;
|
||||
creditos: number;
|
||||
@@ -118,6 +119,7 @@ export type Database = {
|
||||
asignatura_hash?: string | null;
|
||||
codigo?: string | null;
|
||||
contenido_tematico?: Json;
|
||||
conversation_id?: string | null;
|
||||
creado_en?: string;
|
||||
creado_por?: string | null;
|
||||
creditos: number;
|
||||
@@ -143,6 +145,7 @@ export type Database = {
|
||||
asignatura_hash?: string | null;
|
||||
codigo?: string | null;
|
||||
contenido_tematico?: Json;
|
||||
conversation_id?: string | null;
|
||||
creado_en?: string;
|
||||
creado_por?: string | null;
|
||||
creditos?: number;
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
# Configuration for private npm package dependencies
|
||||
# For more information on using private registries with Edge Functions, see:
|
||||
# https://supabase.com/docs/guides/functions/import-maps#importing-from-private-registries
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"imports": {}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
// Follow this setup guide to integrate the Deno language server with your editor:
|
||||
// https://deno.land/manual/getting_started/setup_your_environment
|
||||
// This enables autocomplete, go to definition, etc.
|
||||
|
||||
// Setup type definitions for built-in Supabase Runtime APIs
|
||||
import "jsr:@supabase/functions-js/edge-runtime.d.ts"
|
||||
|
||||
console.log("Hello from Functions!")
|
||||
|
||||
Deno.serve(async (req) => {
|
||||
const { name } = await req.json()
|
||||
const data = {
|
||||
message: `Hello ${name}!`,
|
||||
}
|
||||
|
||||
return new Response(
|
||||
JSON.stringify(data),
|
||||
{ headers: { "Content-Type": "application/json" } },
|
||||
)
|
||||
})
|
||||
|
||||
/* To invoke locally:
|
||||
|
||||
1. Run `supabase start` (see: https://supabase.com/docs/reference/cli/supabase-start)
|
||||
2. Make an HTTP request:
|
||||
|
||||
curl -i --location --request POST 'http://127.0.0.1:54321/functions/v1/generate-subject-suggestions' \
|
||||
--header 'Authorization: Bearer eyJhbGciOiJFUzI1NiIsImtpZCI6ImI4MTI2OWYxLTIxZDgtNGYyZS1iNzE5LWMyMjQwYTg0MGQ5MCIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjIwODYxMDc1NTl9.68Q-uYZ-5EHQfzzqL38ivfGTUYyQ_ncJ34eAivWwl2So5NcvWGL9DSjg-fJ8UA9NKqnH5r-i8Z1bONE9LPMwBg' \
|
||||
--header 'Content-Type: application/json' \
|
||||
--data '{"name":"Functions"}'
|
||||
|
||||
*/
|
||||
Reference in New Issue
Block a user