This repository has been archived on 2024-08-28. You can view files and clone it, but cannot push or open issues or pull requests.
crew-ai-codecollection/README.md

40 lines
661 B
Markdown
Raw Normal View History

2024-03-25 21:26:44 +00:00
# crewAI
## Anleitungsvideo
2024-03-25 10:58:58 +00:00
[Youtube: CrewAI Python Tutorial for Beginners - Let's Build an AI Crew!
2024-03-25 11:36:00 +00:00
](https://www.youtube.com/watch?v=6NbJQsCg1VQ)
2024-03-25 21:26:44 +00:00
## Open Source Repositorium
https://github.com/joaomdmoura/crewAI
2024-03-25 11:36:00 +00:00
# Installation
2024-03-25 21:26:44 +00:00
2024-03-25 11:36:00 +00:00
```shell
py -m venv venv
2024-03-25 11:59:32 +00:00
.\venv\Scripts\activate
```
```shell
#linux
python -m venv venv
./venv/bin/activate)
2024-03-25 21:26:44 +00:00
pip install python-dotenv crewai langchain langchain-community setuptools wikipedia duckduckgo-search openai
## Mit localen Large Language Modulen (LLM)
## Install Ollama
## https://ollama.com/
pip install ollama
2024-03-25 11:59:32 +00:00
```
2024-03-25 21:26:44 +00:00
Alle Beispiele lassen sich wie folgt starten mit:
`python beispieldatei.py`