Astreus

智能体持久化

在 Astreus 文档中了解 智能体持久化,获取用于构建智能体系统的设置指导、API 模式和实用示例。 了解构建可靠的 Astreus 智能体系统所需的设置模式、API 和实用示例。

将智能体保存到数据库并加载,以便复用。

快速开始

克隆完整示例

最简单的开始方式是克隆完整的示例仓库:

git clone https://github.com/astreus-ai/examples
cd examples/agent-persistence
npm install

或仅安装包

如果你更喜欢从零开始构建:

npm install @astreus-ai/astreus

环境配置

# .env
OPENAI_API_KEY=sk-your-openai-api-key-here
DB_URL=sqlite://./astreus.db

智能体持久化

import { Agent } from '@astreus-ai/astreus';

// Create and save an agent
const agent = await Agent.create({
  name: 'ProjectAssistant',
  model: 'gpt-4o',
  memory: true,
  systemPrompt: 'You are a project management assistant.'
});

// Use the agent
await agent.ask("Remember that our project deadline is March 15th");

// Later, load the same agent by name
const loadedAgent = await Agent.findByName('ProjectAssistant');
const response = await loadedAgent?.ask("What is our project deadline?");
console.log(response); // Should remember March 15th

运行示例

如果你克隆了仓库:

npm run dev

仓库

完整示例可在 GitHub 上获取:examples/agent-persistence

最后更新时间:2026年7月6日