エージェントランタイム
エージェントランタイムとは、エージェントが実際に動作するエンジンです。セッションを保持し、呼び出すツールを決定し、応答をストリーミングし、制限を適用します。Dropstoneでは、同じランタイムがチャット、CLI、SDKに提供されます。
エージェントランタイムとは、エージェントが動作するエンジンです。モデルはその一部に過ぎません。ランタイムは、セッションを保持し、呼び出すツールとその順序を決定し、応答をストリーミングし、メモリを視野に入れ、アカウントに許可された操作を適用するものです。
これは、エージェントを単なるチャット補完ではなく、エージェントたらしめるレイヤーです。補完は1つのメッセージに応答します。ランタイムは、ファイルを読み取り、コマンドを実行し、アクションに対する承認を待ち、メモリにコールバックし、タスクを複数のステップにわたって実行できます。
Dropstoneでは、同じランタイムがすべてのサーフェスに提供されます。Dropstone ChatとCLIはその2つのクライアントであり、SDKは独自のコードに同じものを提供します。セッション、ツール、ストリーミング、アカウントのメモリです。そのため、アプリケーションが開始したセッションは、CLIで教えた内容を認識します。
知っておくべき結果が1つあります。公開HTTP APIはランタイムではありません。これはステートレスでOpenAI互換の補完エンドポイントであり、メモリもツールも保持しません。コード内でエージェントが必要な場合は、SDKのローカルクライアントがそのルートです。
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.
Ctrl+I