Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,4 @@ marimo/_static/
marimo/_lsp/
__marimo__/

./agent_evals/dataset.jsonl
agent_evals
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,19 @@ pip install devops-agent
```

## Configuration

Create a `.env` file in the project root:

#### LLM API KEYS
```env
ANTHROPIC_API_KEY=your_api_key_here
export GEMINI_API_KEY=YOUR API KEY
or
export ANTHROPIC_API_KEY=YOUR API KEY
or
export OPENAI_API_KEY=YOUR API KEY
```
#### Qdrant Config for Agent Memory
```env
export QDRANT_URL=YOUR QDRANT URL
export QDRANT_API_KEY=YOUR QDRANT API KEY
```

## Usage

### Analyze Log Files
Expand Down Expand Up @@ -145,3 +151,8 @@ Apache2.0 License - see LICENSE file for details
## Support

For issues and questions, please open an issue on GitHub.

## Special Credits
- Built with <b>Agno2.0</b> framework for multi-agent orchestration
- Uses <b>POML</b> for structured prompt engineering
- powered by Claude (Anthropic), GPT (OpenAI) and Gemini (Google)