You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Augmenta runs in an "autonomous" mode, where it will autonomatically make decisions about what to search for, which resuults to read, and when it has enough information to make a decision.
3
+
Augmenta uses a unified agent architecture that handles web research through a streamlined interface.
4
4
5
-
You may want to switch to a "pre-determined" mode, where you can specify the search terms and the number of results to scrape. This is useful if you want to have more control over the search process, or if you want to use Augmenta in a more deterministic way.
5
+
The `AugmentaAgent` class provides built-in capabilities for web search, content extraction, and LLM-based analysis.
6
6
7
-
To start, add this to your `config.yml`:
7
+
## Features
8
+
9
+
- Web search using various search providers
10
+
- Content extraction from web pages
11
+
- Integration with Model Context Protocol (MCP) servers
12
+
- Structured output formatting via Pydantic models
13
+
- Customizable system prompts and model parameters
14
+
15
+
## Usage
16
+
17
+
The agent is automatically configured when you run Augmenta with your configuration:
8
18
9
19
```yaml
10
-
agent: fixed
20
+
# Basic configuration example
21
+
model: "openai/gpt-4o"
22
+
temperature: 0.2
23
+
max_tokens: 2048
24
+
rate_limit: 10# Optional: Requests per minute
11
25
```
26
+
27
+
## Advanced Configuration
28
+
29
+
You can customize the agent's behavior through your configuration file:
30
+
31
+
```yaml
32
+
prompt:
33
+
system: "You are a research assistant specialized in analyzing company donations data. Your task is to categorize each donation and provide reasoning."
34
+
user: "Analyze this donation: {{amount}} from {{donor}} to {{recipient}}. Provide category and reasoning."
35
+
```
36
+
37
+
The agent integrates seamlessly with Augmenta's search and extraction tools to provide comprehensive research capabilities.
0 commit comments