Orpius Quick Start
Get from “installed” to “first automation” in about 10 to 20 minutes.
Who this is for
This Quick Start is for anyone new to Orpius who wants a fast, practical introduction using the Orpius Console.
If you need deeper detail (security model, architecture, custom tools, SDK integration), use the In-depth Technical Guide.
What you’ll achieve
By the end, you will have:
- Installed the Orpius Console and connected to your Orpius Server
- Added at least one language model provider
- Run a first chat with Orpius
- Created one automation (a Schedule or an Event)
- Stored one Secret and referenced it safely
Key ideas (simple mental model)
You only need a few concepts to get started:
- Organisation: your company or team boundary.
- Space: a workspace for one project. Most things live inside a space.
- Agent: an AI “user” that can chat and perform work.
- Tools: capabilities an agent can use (scheduler, notifications, web retrieval, code execution, etc).
- Schedule: runs an activity at a time/interval.
- Event: runs an activity when triggered (often by an HTTP call).
- Secrets: store API keys and tokens safely, so they are not exposed to model providers.
That’s it. Everything else is a refinement of these.
1) Install and connect to Orpius
- Open the download link provided to you (it resembles
https://<YourAppName>.app.orpius.com/console/). - Download and run the installer.
- Launch the Orpius Console.
- Enter your Server URL.
- If you are a system owner, enter the Access Key.
If this is your first launch as the system owner, you’ll be prompted to complete initial setup (including email server settings and creating your account).
2) Create your account and open a Space
- Create your account when prompted (username, email, given name, surname, password).
- After sign-in, you’ll see your available spaces in the Space Selector.
- Open the default space, or create a new one for this Quick Start (for example, “Getting Started”).
Tip: Use a dedicated space for experiments so you can delete it later without affecting anything else.
3) Add a large language model (LLM)
Orpius connects to the model provider you choose. You can configure multiple models and assign different models to different agents.
- In the Console, open Models from the sidebar.
- Select Add (+).
- Enter the provider details (for example, OpenAI, Azure OpenAI, Google Gemini).
- Save.
If you are not sure which model to start with, pick one you already have an API key for. The goal here is simply to confirm inferencing is working.
4) Start your first chat
- Open Chat.
- Send a simple prompt, for example:
“Hello. Please tell me what you can do in this space.”
You should receive a response immediately. If you do, you have confirmed: Console connectivity, authentication, and model configuration are all working.
If you get an error, check:
- your model configuration
- your provider key
- network access from the Orpius Server to the provider endpoint
5) Create your first Secret (safe credentials)
Secrets let you reference API keys in prompts without sending the actual values to the model provider. You will use references like:
<%=Key:WeatherKey%>
Open Secrets from the sidebar.
Select Add (+).
Enter:
- Token:
WeatherKey(example) - Secret Value: your API key
- Description: what it is used for
- Token:
Save.
Now you can safely reference it in prompts and activities.
6) First automation option A (recommended): Create a Schedule
This is the quickest way to see Orpius do unattended work.
A simple scheduled task: write a file and notify you
- Start a new Chat.
- Paste a clear instruction like this:
"Every day at 09:00, create or update a file named
DailyNote.txtby appending today's date and one short sentence. After writing to the file send me a notification."
- Orpius will create the schedule.
- Open Schedules to review it.
Notes:
- If you don’t specify repetition or end conditions, schedules may run indefinitely.
- If notifications aren’t delivered, check whether the email server is configured and whether notifications are enabled.
7) First automation option B: Create an Event and trigger it
Events are how external systems commonly trigger Orpius. They can also be used from one task to trigger another task.
Create an event via chat
- Start a new Chat.
- Ask Orpius to create an event:
“Create an event named
QuickStartEventthat appends a line toEventLog.txtwith the current date/time and the words ‘Event triggered’. Then notify me.”
- Open Events and find
QuickStartEvent. - Expand the event URLs to copy URL for Access Key 1.
Trigger the event
Trigger it via HTTP GET or POST from a browser, curl, Postman, or your application.
- If you paste the full event URL into a browser, it will usually trigger via GET.
- Or use curl (example format):
curl "<PASTE_EVENT_URL_HERE>"
After triggering:
- Check Files for
EventLog.txt - Check Notifications for the message
Tip: Events can also accept query string parameters. Keys prefixed with _ are tool-only parameters; others may be passed to the agent as well, depending on how your event is set up.
8) (Optional) A safe first integration pattern: Operations
If you are integrating Orpius into your application, Operations are the standard entry point.
High-level steps:
- Open Operations.
- Select Add (+).
- Choose the Agent that will handle requests.
- Enable only the tools the operation genuinely needs (tools are disabled by default for safety).
- Save, then copy the External ID and Access Key into your application.
Tip: If an operation is customer-facing, keep tool access minimal. If sensitive work is needed, have the customer-facing agent trigger an Event handled by a more privileged agent.
Common pitfalls (and how to avoid them)
“My schedule is running too often.” Always specify the interval clearly and set repetition limits where appropriate.
“I referenced a secret but it didn’t work.” Confirm the Secret exists and that you typed the token name correctly in
<%=Key:TokenName%>.“No notifications arrive.” Confirm the email server is configured (system owners) and that the Notifier tool is enabled where needed.
“My event keeps re-creating itself.” Avoid phrasing event activity instructions as “create an event” or “schedule an event”. Use immediate action wording.
Next steps
Once you have the Quick Start working, the usual progression is:
Create a custom agent for one specific job (clear persona + instructions).
Enable only the tools required for that job.
Add one integration surface:
- an Event endpoint for webhooks, or
- an Operation for application-to-agent requests.
Add auditing and retention policies appropriate to your environment.
When you’re ready, move on to:
- In-depth Technical Guide (architecture, security, retention, auditing)
- Development Guides (custom tools, SDK, operations integration)