Framework Usage
Welcome to the framework usage documentation! This section will help you understand how to use Astrsomn in your applications.
Overview
Astrsomn provides a comprehensive set of features for building AI-powered applications:
- Agent Management: Configure and manage intelligent agents with model, MCP, tool, prompt, and account settings
- Workflow Engine: Orchestrate complex business processes (coming soon)
- System Management: Manage users and system configurations
Quick Start Example
java
@Astro(name = "my-agent")
public class MyAgent {
@AstroModel(provider = "DEEPSEEK", model = "deepseek-chat")
private AstroClient client;
@AstroPrompt("You are an intelligent assistant")
public String chat(String message) {
return client.chat(message);
}
}Table of Contents
- Model Configuration - Configure AI models
- MCP Configuration - Configure Model Context Protocol
- Tool Configuration - Configure tools for agent
- Prompt Configuration - Configure prompt templates
- Account Management - Manage accounts
- Workflow Engine - Workflow orchestration
- User Management - Manage users
Related Documentation
- Framework Development - Extend the framework
- Project Architecture - Understand the architecture