1.0.0 • Published 5 months ago

maiar-agents v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@maiar-ai/agents

Add support for 10+ agents/model providers in your favorite agent framework.

Current providers:

  • OpenAI
  • Anthropic (Claude)
  • DeepSeek
  • Mistral
  • Gemini
  • Agent.ai
  • Runway
  • Midjourney
  • Elsevier
  • Unity
  • NVIDIA
  • Harmonai
  • AudioCraft

expect more providers to be added as well

usage

first install the plugin in your codebase

npm add @maiar-ai/agents

then simply just declare your provider and you are good to go

const claudeProvider = createProvider({
  type: "anthropic",
  config: {
    apiKey: "your-api-key",
    model: "claude-3-opus-20240229",
  },
});