0.0.75 • Published 6 months ago

@agentlabs/node-sdk v0.0.75

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

agentlabs node-sdk

A NodeJS SDK that can be used to control an AgentLabs managed AI agent.

Prerequisites

  • NodeJS >= v.18.0.0

Getting started

Here is a minimal example in which an agent is connected to AgentLabs and prepared to handle user messages.

import { Project } from "@agentlabs/node-sdk";

const project = new Project({
	projectId: "fff9fcad-07e0-418b-8037-a2dcc920220e",
	secret: '<PROJECT_SECRET>',
	agentlabsUrl: 'https://app.agentlabs.dev',
});

const agent = project.agent("4b55e242-a614-4c51-9193-12869e6070b3");

agent.onChatMessage((message) => {
    if (message.text === 'ping') {
        message.reply('pong')
    } else {
        message.reply("Sorry, I didn't get that.")
    }
});

agent.connect()

Connecting to a self hosted instance

Connecting to a self hosted instance is done the exact same way as connecting to the cloud version. All you need to do is to use the right agentlabsUrl while initializing the project.

const project = new Project({
	projectId: "fff9fcad-07e0-418b-8037-a2dcc920220e",
	secret: '<PROJECT_SECRET>',
	agentlabsUrl: '<SELF_HOSTED_INSTANCE_DOMAIN>',
});
0.0.73

7 months ago

0.0.74

7 months ago

0.0.75

6 months ago

0.0.72

7 months ago

0.0.62

7 months ago

0.0.63

7 months ago

0.0.64

7 months ago

0.0.65

7 months ago

0.0.66

7 months ago

0.0.67

7 months ago

0.0.68

7 months ago

0.0.69

7 months ago

0.0.60

7 months ago

0.0.61

7 months ago

0.0.59

7 months ago

0.0.56

7 months ago

0.0.57

7 months ago

0.0.58

7 months ago

0.0.70

7 months ago

0.0.71

7 months ago

0.0.55

7 months ago

0.0.54

7 months ago

0.0.53

7 months ago

0.0.52

7 months ago

0.0.51

7 months ago

0.0.50

7 months ago

0.0.49

7 months ago

0.0.48

7 months ago

0.0.47

7 months ago

0.0.46

7 months ago

0.0.45

7 months ago

0.0.44

7 months ago

0.0.43

7 months ago

0.0.42

7 months ago

0.0.41

7 months ago

0.0.40

7 months ago

0.0.39

7 months ago

0.0.38

7 months ago

0.0.37

7 months ago

0.0.36

7 months ago

0.0.35

7 months ago

0.0.34

7 months ago

0.0.33

7 months ago

0.0.31

7 months ago

0.0.30

7 months ago

0.0.29

7 months ago

0.0.28

7 months ago

0.0.27

7 months ago

0.0.26

7 months ago

0.0.0

7 months ago