帮助您轻松构建 AI 智能体

基于 LLM 大模型的 AI 智能体应用开发平台。提供了开箱即用的 AI 智能体和可视化开发工具,轻松进行数据处理、模型调用、检索增强生成 (RAG)工作流编排等,在您的企业服务中集成生成式人工智能,释放您 的全部业务潜能。

Interactive Console

Interactive console to import data (drag and drop) and start querying right away.

Check our Web Console documentation to get started.

Artistic view of QuestDB's Web Console split in 3 components: the navigation tree, the SQL code editor and data displayed as a chart

领先的 LLMs 应用开发平台

  • 提供生成式 AI 应用的构建和运营支持
  • 融合 Backend as Service 和 LLMOps
  • 具有模型中立性,支持自定义模型部署
  • 支持多模态数据处理、多语言模型和智能问答系统
  • 提供私有化部署和云服务

应用场景

  • 数据平台:数据清洗、预处理、分析与报告生成
  • 智能问答:企业知识库集成、客户服务自动化
  • 流程自动化:数据驱动决策支持和流程优化
  • 多模态处理:文本、图像和多语言数据处理

愿景、使命与价值观

  • 愿景:AI Build Next Development
  • 使命:让 AI 为每个人创造普惠价值
  • 价值观:实用、开放合作、知识驱动

See live demo

Query three large datasets and more than 2 billion rows in milliseconds with SQL

Try QuestDB demo in your browser

Load results  >

Augmented SQL for time series

QuestDB enhances ANSI SQL with time series extensions to manipulate time stamped data

Arrow up icon
SELECT timestamp, tempC
FROM sensors
WHERE timestamp IN '2021-05-14;1M';
-- Search time
SELECT timestamp, tempC
FROM sensors
WHERE timestamp IN '2021-05-14;1M';
SELECT timestamp, avg(tempC)
FROM sensors
SAMPLE BY 5m;
-- Slice time
SELECT timestamp, avg(tempC)
FROM sensors
SAMPLE BY 5m;
SELECT timestamp, sensorName, tempC
FROM sensors
LATEST ON timestamp PARTITION BY sensorName;
-- Navigate time
SELECT timestamp, sensorName, tempC
FROM sensors
LATEST ON timestamp PARTITION BY sensorName;
SELECT sensors.timestamp ts, rain1H
FROM sensors
ASOF JOIN weather;
-- Merge time
SELECT sensors.timestamp ts, rain1H
FROM sensors
ASOF JOIN weather;
Arrow up icon

Magnifying glass iconSearch Time

Filter and search for specific timestamps with “WHERE”

Knife iconSlice Time

Create time buckets and aggregate by intervals with “SAMPLE BY”

Indication arrow iconNavigate Time

Search time series from most recent values to oldest with “LATEST ON”

Two overlapping squaresMerge Time

Join two tables based on timestamp where timestamps do not exactly match with “ASOF JOIN”

Why time series?

An icon showing wave propagation

Join our developer community

QuestDB is open source. Follow us on Twitter, star our GitHub repo, and join our developer community on Slack!

An icon showing a paper plane

Subscribe to our newsletter

Stay up to date with all things QuestDB