Astreus

Agent mit Wissensdatenbank

Agenten mit Wissensdatenbank-Fähigkeiten für erweitertes Abrufen von Informationen erstellen.

Agenten mit Wissensdatenbank-Fähigkeiten für erweitertes Abrufen von Informationen erstellen.

Schnellstart

Das vollständige Beispiel klonen

Der einfachste Weg zum Start ist das Klonen des vollständigen Beispiel-Repositorys:

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

Oder nur das Paket installieren

Wenn du lieber von Grund auf neu aufbauen möchtest:

npm install @astreus-ai/astreus

Umgebungseinrichtung

# .env
# LLM API key
OPENAI_API_KEY=sk-your-openai-api-key-here

# Knowledge database (required for RAG)
KNOWLEDGE_DB_URL=postgresql://username:password@localhost:5432/knowledge_db

# Main database for agent persistence
DB_URL=sqlite://./astreus.db

Wissens-Agent

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

// Create agent with knowledge enabled
const agent = await Agent.create({
  name: 'CosmosBot',
  model: 'gpt-4o',
  embeddingModel: 'text-embedding-3-small', // Specify embedding model directly
  knowledge: true,
  systemPrompt: 'You can search and retrieve information from scientific knowledge bases about the cosmos and universe.'
});

// Add knowledge from scientific book about the sun and cosmos
await agent.addKnowledgeFromFile(
  './data/The Sun\'s Light and Heat.pdf',
  { category: 'solar-physics', version: '1.0' }
);

// Agent automatically uses knowledge in conversations
const response = await agent.ask("What is Correction for Atmospheric Absorption? Explain.");
console.log(response); // Uses knowledge base automatically

Das Beispiel ausführen

Falls du das Repository geklont hast:

npm run dev

Repository

Das vollständige Beispiel ist auf GitHub verfügbar: examples/agent-with-knowledge

Zuletzt aktualisiert: 6. Juli 2026