Runtime dell'agente
Un runtime dell'agente è il motore su cui un agente esegue realmente: mantiene la sessione, decide quali strumenti chiamare, trasmette la risposta in streaming e applica i limiti. In Dropstone lo stesso runtime serve chat, CLI e SDK.
Un runtime dell'agente è il motore su cui un agente esegue. Il modello è solo una parte: il runtime è ciò che mantiene la sessione, decide quali strumenti chiamare e in quale ordine, trasmette la risposta in streaming, tiene la memoria in vista e applica ciò che l'account è autorizzato a fare.
È il livello che rende un agente un agente, piuttosto che un completamento di chat. Un completamento risponde a un singolo messaggio. Un runtime può leggere un file, eseguire un comando, attendere la tua approvazione su un'azione, richiamare la memoria e portare avanti un'attività attraverso molti passaggi.
In Dropstone lo stesso runtime serve ogni superficie. Dropstone Chat e la CLI sono due client di esso, e l'SDK offre al tuo codice lo stesso: sessioni, strumenti, streaming e la memoria dell'account. Ecco perché una sessione avviata dalla tua applicazione sa ciò che hai insegnato alla CLI.
Una conseguenza da conoscere: l'API HTTP pubblica non è il runtime. È un endpoint di completamenti stateless e compatibile con OpenAI, quindi non porta memoria né strumenti. Se vuoi l'agente nel tuo codice, il client locale dell'SDK è la strada giusta.
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.
- Dropstone SDKA typed TypeScript and JavaScript client for the Dropstone agent, with two entry points: one for headless API calls from CI or a serverless function, one that runs the agent locally with the same account memory as the CLI and Chat.
- Using the API with your planCall Dropstone over HTTP with an API key. The endpoint is OpenAI-compatible, billed pay-per-use from your credit balance, and works from any language. Keys, errors, rate limits, and what the API does not carry.
- Dropstone CLI overviewThe Dropstone CLI is an agent for your terminal that reads your codebase, edits files, runs commands, and shares memory with everything else on your account. Install it in one command. The full reference is at docs.dropstone.io.