Agent runtime
ஒரு agent runtime என்பது ஒரு agent உண்மையில் இயங்கும் இயந்திரம்: இது அமர்வை வைத்திருக்கிறது, எந்த கருவிகளை அழைக்க வேண்டும் என்பதை முடிவு செய்கிறது, பதிலை ஸ்ட்ரீம் செய்கிறது, மற்றும் வரம்புகளை அமல்படுத்துகிறது. Dropstone இல் அதே runtime சாட், CLI, மற்றும் SDK ஆகியவற்றிற்கு சேவை செய்கிறது.
ஒரு agent runtime என்பது ஒரு agent இயங்கும் இயந்திரம். மாதிரி அதன் ஒரு பகுதி: runtime என்பது அமர்வை வைத்திருப்பது, எந்த கருவிகளை அழைக்க வேண்டும் மற்றும் எந்த வரிசையில் என்பதை முடிவு செய்வது, பதிலை மீண்டும் ஸ்ட்ரீம் செய்வது, நினைவகத்தை பார்வையில் வைத்திருப்பது, மற்றும் கணக்கு என்ன செய்ய அனுமதிக்கப்படுகிறது என்பதை அமல்படுத்துவது.
இது ஒரு agent ஐ ஒரு chat completion ஆக இல்லாமல் agent ஆக மாற்றும் அடுக்கு. ஒரு completion ஒரு செய்திக்கு பதிலளிக்கிறது. ஒரு runtime ஒரு கோப்பை படிக்கலாம், ஒரு கட்டளையை இயக்கலாம், ஒரு செயலுக்கு உங்கள் ஒப்புதலுக்காக காத்திருக்கலாம், நினைவகத்திற்கு மீண்டும் அழைக்கலாம், மற்றும் ஒரு பணியை பல படிகளில் எடுத்துச் செல்லலாம்.
Dropstone இல் அதே runtime ஒவ்வொரு மேற்பரப்பிற்கும் சேவை செய்கிறது. Dropstone Chat மற்றும் CLI ஆகியவை அதன் இரண்டு கிளையண்டுகள், மற்றும் SDK உங்கள் சொந்த குறியீட்டிற்கு அதையே வழங்குகிறது: அமர்வுகள், கருவிகள், ஸ்ட்ரீமிங், மற்றும் கணக்கின் நினைவகம். அதனால்தான் உங்கள் பயன்பாடு தொடங்கும் ஒரு அமர்வு, CLI இல் நீங்கள் கற்பித்ததை அறிந்திருக்கிறது.
தெரிந்து கொள்ள வேண்டிய ஒரு விளைவு: பொது HTTP API runtime அல்ல. இது ஒரு நிலையற்ற, OpenAI-இணக்கமான completions முனையம், எனவே இதில் நினைவகம் அல்லது கருவிகள் இல்லை. உங்கள் குறியீட்டில் agent ஐ விரும்பினால், 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.