Agente auto-apprendente
Un agente auto-apprendente è un agente che migliora da ciò che accade mentre lavora: una correzione che fai, un esito di un'attività, una modifica che accetti o rifiuti. Cambia il suo comportamento piuttosto che solo il suo contesto.
Un agente auto-apprendente è un agente che cambia il modo in cui lavora in base a ciò che accade mentre lavora, piuttosto che solo in base a ciò che gli dici al momento.
L'apprendimento è ristretto e specifico, ed è questo che lo rende utile. Non riaddestra un modello. Registra ciò che ha imparato come memoria e lo applica la volta successiva:
- Una correzione. Dici "no, usa le arrow function qui". Questo diventa una regola e vale da quel momento in poi. Vedi Regole e fatti.
- Un esito di un'attività. Ciò che ha funzionato davvero in un lavoro e ciò che ha dovuto rifare modella il suo approccio al successivo. Vedi Come un agente impara mentre lavora.
- Ciò che conservi. Le modifiche che accetti e rifiuti sono un segnale di ciò che vuoi, ed è per questo che il risultato migliora senza che tu scriva una specifica.
Ci sono due limiti che vale la pena conoscere. Impara nelle superfici in cui la memoria è attiva, e non in una chat incognita, che è di sola lettura per progettazione. E ciò che ha imparato è tuo da ispezionare e rimuovere: vedi Cambiare o dimenticare una memoria.
Related articles
- Agent memoryAgent memory is what an agent stores between sessions and brings back when it is relevant: standing rules, facts, studied material, and short summaries of past conversations.
- AI agent with a memoryAn AI agent with a memory is one that keeps what it learns about you and your work, attaches it to your account rather than to one app, and applies it wherever you use the agent next.
- How an agent learns as it worksDropstone is a self-learning agent. It records what it learns from corrections, from finished work, and from sources you ask it to study, and it uses that the next time without being told. Here is the loop.
- Rules and factsDropstone keeps two kinds of memory. Standing rules apply to every task without being searched for. Facts are recalled only when they are relevant. Here is why the difference matters and how it decides.