JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 23
  • Score
    100M100P100Q10870F
  • License MIT

Robota's core functionality package

Package Exports

  • @robota-sdk/core
  • @robota-sdk/core/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@robota-sdk/core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@robota-sdk/core

⚠️ DEPRECATED - This package has been deprecated

This package has been deprecated and is no longer maintained. All functionality has been moved to @robota-sdk/agents.

Migration Guide

Please migrate to @robota-sdk/agents for the latest features and improvements:

Before (deprecated)

import { Robota, OpenAIProvider } from '@robota-sdk/core';

const robota = new Robota({
  provider: new OpenAIProvider({ apiKey: 'sk-...' }),
  model: 'gpt-4'
});
import { Robota } from '@robota-sdk/agents';
import { OpenAIProvider } from '@robota-sdk/openai';

const robota = new Robota({
  name: 'MyAgent',
  aiProviders: [new OpenAIProvider({ apiKey: 'sk-...' })],
  defaultModel: {
    provider: 'openai',
    model: 'gpt-4'
  }
});

What's Changed

  • Core Agent: Moved to @robota-sdk/agents
  • AI Providers: Moved to separate packages (@robota-sdk/openai, @robota-sdk/anthropic, @robota-sdk/google)
  • Tools: Integrated into @robota-sdk/agents
  • Plugins: Enhanced plugin system in @robota-sdk/agents

Installation

⚠️ Do not install this package for new projects

For existing projects, migrate to:

npm install @robota-sdk/agents @robota-sdk/openai

Documentation

Support

This package will no longer receive updates. Please use @robota-sdk/agents instead.

License

MIT