Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kwishna/aiagents
Coursera - deeplearning.ai crewai course
https://github.com/kwishna/aiagents
coursera crewai deeplearning-ai genai llm openai
Last synced: 24 days ago
JSON representation
Coursera - deeplearning.ai crewai course
- Host: GitHub
- URL: https://github.com/kwishna/aiagents
- Owner: kwishna
- Created: 2024-09-13T18:13:23.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-27T19:06:34.000Z (25 days ago)
- Last Synced: 2024-12-27T20:18:08.557Z (25 days ago)
- Topics: coursera, crewai, deeplearning-ai, genai, llm, openai
- Language: Jupyter Notebook
- Homepage:
- Size: 46.5 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AiAgents
**AiAgents** is a powerful framework designed for building intelligent agents that can perform a variety of tasks using artificial intelligence techniques. This repository provides a couple of crewai based example of AI agents.
## Features
- **Modular architecture**: Easily extend or modify components.
- **Support for multiple algorithms**: Implement various AI techniques.
- **User-friendly interface**: Simplified methods for creating agents.
- **Comprehensive documentation**: Clear guides for setup and usage.## Installation
To get started with AiAgents, follow these steps:
1. Clone the repository:
```bash
git clone https://github.com/kwishna/AiAgents.git
```
2. Navigate to the project directory:
```bash
cd AiAgents
```3. Activate virtual environment:
```bash
./bin/activate
```4. Install the required dependencies:
```bash
pip install -r requirements.txt
```5. Update API KEYS in .env file.
6. Open .ipynb notebooks and start working:
```bash
python -m jupyter lab --app-dir="./src/course-notebooks"
```## Contributing
I welcome contributions from the community! If you'd like to contribute to AiAgents, please follow these steps:1. Fork the repository.
2. Create a new branch:
```bash
git checkout -b feature/your-branch-name
```3. Make your changes and commit them:
```bash
git commit -m "Add some feature"
```4. Push to the branch:
```bash
git push origin feature/your-branch-name
```5. Open a Pull Request.