Launch Oxy from anywhere without requiring an existing project folder:
oxy serve --readonly
from any directoryNote: This is an early preview feature and may encounter some edge cases during initial use. Starting the server without --readonly
will not show any changes in behavior for now
Secure handling of sensitive configuration and credentials:
Improved control over AI conversations:
Fixed minor type conversion issues in the unified semantic layer and updated dependencies for improved stability
Introducing semantics.yml
- a comprehensive approach to data modeling that unifies all entity definitions across your entire Oxy deployment:
oxy sync
to bootstrap unified semantic definitions from all your models, then customize as needed{{ dimensions.month }}
semantics.yml
for consistency across your deploymentNote: This is an early release feature and may encounter some edge cases during initial use.
Example of semantics.yml, which you can find in our public source code
Complete user administration system with role-based access control:
config.yml
with simple email list/users
endpointExample config.yml, which you can find in our public source code
authentication:
basic:
smtp_user: example@gmail.com
smtp_password_var: AUTH_SMTP_PASSWORD
smtp_server: smtp.gmail.com
smtp_port: 587
admins:
- example1@oxy.tech
- example2@oxy.tech
Users can then be managed at <your-deployment-url>/users
Database management and API Keys management UIs are slightly reworked to follow a unified design language with consistent styling and interaction patterns
Conversations with agents now persist seamlessly across page navigation and reloads, with improved first message flow for smoother user experience
Added more endpoints to the API reference. Visit <your-deployment-url>/apidoc
for a closer look at our latest Openapi documentation
Updated to Rust 1.88 (latest version), resolved ClickHouse stability issues, and improved artifact panel scrolling behavior. Enhanced dependency management for better overall platform reliability
We've implemented authentication with multiple new options to fit your workflow:
For more information, please visit our Authentication document
Oxy now allows programmatic access for integrations and automation using API keys - perfect for headless operations and third-party integrations
An API doc is available at your-deployment-url/apidoc
while the API key is available under your-deployment-url/api-keys
Our AI agents are now more powerful and reliable:
To set up routing agents, please visit our routing agents documentation
Below is a simple example of a routing agent
model: "openai-4o-mini"
type: routing
routes:
- "agents/sql-analyst.agent.yml"
- "workflows/data-processing.workflow.yml"
- "queries/reports.sql"
Streamline your data workflows with powerful new sync capabilities:
From the UI, you can start viewing databases and perform operation like sync
and build
similarly to the CLI commands at <your-deployment-url>/databases
Enhanced IDE and file management capabilities:
Significantly improved conversation handling:
Enhanced platform stability with improved data fetching, strengthened database connections, and better chat streaming architecture. We also implemented comprehensive logging and error handling improvements behind the scene to gracefully handle edge cases and large data loading scenarios
Latest long term support version of Node and Rust is used with the most sensibly updated sets of dependencies to ensure backward compatibility and security
There is also a new Docker Release for easy access to the latest container images.
This release adds native support for data applications. It includes an open, declarative framework for building data applications, and an IDE for Oxy to code these applications with the given framework. We also added dark mode to make our product experience easier on the eyes.
This release includes native visualization for the Oxy GUI experience. Further, agents can now natively execute workflows. Google BigQuery support has been added as a native data source.
This release includes a built-in MCP-compliant server, enabling seamless context management and integration with clients that support the MCP specification. Ideal for LLM orchestration and centralized context management.MCP server supports two transport options: server sent events
and stdio
Please visit our documentation for detailed instruction: https://docs.oxy.tech/learn-about-oxy/mcp-usage#setting-up-the-mcp-server
We’ve launched oxy serve
to make it easier for you to interact with your agents. Now you can:
Try this new feature by running oxy serve
from your command line.