Create an account and project:

  1. In a browser, go to www.meshagent.com. Sign in with an existing account or sign up for an new account.
  2. In the web ui, if necessary, create a new project and give it a name (e.g., MyProject)
  3. Ensure your project has credits to start a room. Go to the Billing page to check your credits in the project.

Using the MeshAgent CLI

Install the cli, authenticate and activate a project:

pip3 install meshagent-cli
# A browser window will open for OAUTH.
meshagent setup

Optional: Alternatively, instead of running the meshagent setup command you can run:

# A browser window will open for OAUTH.
meshagent auth login
meshagent project activate -i
meshagent api-key activate -i

You are now authenticated and ready to use the cli to perform operations involving a room.

Let’s connect a chatbot to a room.

meshagent chatbot join --room my-room --agent-name "Chat Agent" --name "Chat Friend"

The chatbot is now connected. In a web browser, go to studio.meshagent.com. Select your project and join the my-room session.

The chatbot agent named “Chat Friend” will be visible in the room and can be interacted with.

If you wish to logout:

meshagent auth logout