Quickstart
This guide uses alquimia-core directly — no runtime service required. You will create a local agentspace, define a simple agent, and chat with it.
Prerequisites
Section titled “Prerequisites”- Python 3.12 installed.
- An API key for an OpenAI-compatible LLM provider.
- The
alquimia-corepackage installed. See Installation for options.
Run your first agent
Section titled “Run your first agent”-
Create an agentspace. An agentspace is a namespace that holds agent configurations, secrets, and parameters.
-
Register your API key as a secret in the agentspace. Secrets are referenced by name in the agent spec, never embedded directly.
-
Create an agent configuration that declares the agent’s identity, system prompt, model connector, and memory strategy.
-
Register the agent in the local registry.
-
Start a conversation using the CLI and ask a question. The agent loads the spec, resolves the secret, calls the model, and returns an answer.
What happens under the hood
Section titled “What happens under the hood”- The CLI loads the agent spec from the local registry.
- The core engine resolves the secret reference to your API key.
- The agent sends the conversation to the configured LLM.
- The response is returned and the session is persisted.
Next steps
Section titled “Next steps”- Agents & configuration — understand the agent spec.
- Tools & integrations — connect APIs and other agents.
- Docker Compose deployment — run the full platform stack.