Hacer una función que inserte el id de conversación #9

Closed
opened 2026-01-30 17:06:25 +00:00 by alexrg · 0 comments
Owner
fn conversation(nombre_de_tabla, id) {
  conv_id = openai.create.conversation();
  supabase.from(tabla)
    .eq('id', id)
    .update('conv_id', conv_id);
}
```rust fn conversation(nombre_de_tabla, id) { conv_id = openai.create.conversation(); supabase.from(tabla) .eq('id', id) .update('conv_id', conv_id); } ```
Guillermo.Arrieta was assigned by alexrg 2026-01-30 17:06:50 +00:00
alexrg added the
Priority
Medium
3
Kind/Feature
labels 2026-01-30 17:07:10 +00:00
Sign in to join this conversation.