n8n
Descripcion
- Maquina: Mi PC
- User: goviedo.sevenit@gmail.com
- pass: C… creo
- url: localhost:5678
Escenarios
Section titled “Escenarios”Los escenarios se componen de:
- Input
- Tarea
- Output
Triggers
Section titled “Triggers”Son los que inician los escenarios. (Add Workflow)
On App Event
Section titled “On App Event”Cuando algo sucede en una aplicacion externa.
On a Schedule
Section titled “On a Schedule”Cada X tiempo se inicie una accion.
Acciones
Section titled “Acciones”Genera acciones dentro de herramientas
- Subir datos a Excel Goole
- Generar Texto con IA
- Enviar un correo.
Condiciones
Section titled “Condiciones”Si pasa X haz Y Espera que ocurra Z Filtra segun condicion
Activacion de Google y accesos.
Section titled “Activacion de Google y accesos.”Para eso hay que irse a la consola de google y habilitar el acceso a los documentos de google.
Open AI Api Key
Section titled “Open AI Api Key”- API Key From Open AI
sk-proj--xxxxxxxxsaeewrVklcbPMHMEimggtT3BlbkFJUjurY5TJfFZdkWMtBWHJvo0arsXIDqOGbCj39vADR42fOSbedIUi4yG7PgRl5YEzhhAC73TZgAOllama
Section titled “Ollama”Desde esta url de hub docker sale como correr docker con una AMD GPU:
docker run -d --device /dev/kfd --device /dev/dri -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama:rocmEjecutar con un modelo
docker exec -it ollama ollama run llama3Supabase
Section titled “Supabase”Vectorizacion gratuita
supabase.com
Proyecto o URL:
https://cqgxxwdgejwghfmwewit.supabase.coApi Key
eyJhbGciOiJIUzI1NiIsIdslkfajImNxZ3h4d2RnZWp3Z2hmbXdld2l0Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MzI1MDEyNzEsImV4cCI6MjA0ODA3NzI3MX0.q8dyttAfk3-j7xT159Wkgmo1HRl3q3KxXPEppiPQ6X4Dart Ejemplo:
const supabaseUrl = 'https://cqgxxwdgejwghfmwewit.supabase.co';const supabaseKey = String.fromEnvironment('SUPABASE_KEY');
Future<void> main() async { await Supabase.initialize(url: supabaseUrl, anonKey: supabaseKey); runApp(MyApp());}