Skip to content

Commit 9797401

Browse files
committed
Add new post on crewai
1 parent 5796b80 commit 9797401

File tree

2 files changed

+170
-0
lines changed

2 files changed

+170
-0
lines changed
+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
#+hugo_base_dir: ~/development/web/jslmorrison.github.io
2+
#+hugo_section: posts
3+
#+options: author:nil
4+
5+
* Getting started with crewAI :@nixos:nixos:ai:
6+
:PROPERTIES:
7+
:EXPORT_FILE_NAME: getting-started-crewai
8+
:EXPORT_DATE: 2024-03-21
9+
:END:
10+
A basic outline in getting started with [[https://www.crewai.io/][crewAI]] framework in order to evaluate it further.
11+
12+
#+hugo: more
13+
What is crewAI and how does it help me? According to their [[https://docs.crewai.com/][documentation website]], crewAI is a:
14+
#+begin_quote
15+
Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks.
16+
#+end_quote
17+
That is probably better explained by an example and some are listed on the site, but I want to try implementing the introductory example.
18+
19+
** Setup
20+
**** Installing requirements
21+
I need the following available in a dev env shell:
22+
- python
23+
- pip
24+
I'll create a =flake.nix= file in order to have those available after executing =nix develop= in the terminal:
25+
#+begin_src nix :noeval
26+
{
27+
description = "A dev env with Python 3 and pip";
28+
29+
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
30+
31+
outputs = { self, nixpkgs }:
32+
let
33+
system = "x86_64-linux";
34+
pkgs = import nixpkgs { inherit system; };
35+
in
36+
{
37+
devShells.${system}.default = pkgs.mkShell {
38+
buildInputs = with pkgs; [
39+
python311Full
40+
python3Packages.pip
41+
];
42+
};
43+
};
44+
}
45+
#+end_src
46+
**** Create a python virtual env
47+
#+begin_src bash :noeval
48+
python -m venv .venv
49+
#+end_src
50+
**** Activate the virtual env
51+
#+begin_src bash :noeval
52+
source .venv/bin/activate
53+
#+end_src
54+
Check the path to the python executable:
55+
#+begin_src
56+
which python
57+
/home/john/dev/crewai/.venv/bin/python
58+
#+end_src
59+
and I can see it has changed as expected from the previous path within the nix store.
60+
The required packages can now be installed and I list them in a =requirements.txt= file:
61+
#+begin_src txt
62+
crewai
63+
crewai[tools]
64+
duckduckgo-search
65+
langchain-community
66+
python-dotenv
67+
#+end_src
68+
#+begin_src bash :noeval
69+
pip install -r requirements.txt
70+
#+end_src
71+
72+
** Assemble the agents
73+
We can now start writing the python script that will define the agents roles and capabilities and the agent specific tasks.
74+
75+
To be continued...
+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
+++
2+
title = "Getting started with crewAI"
3+
date = 2024-03-21
4+
tags = ["nixos", "ai"]
5+
categories = ["nixos"]
6+
draft = false
7+
+++
8+
9+
A basic outline in getting started with [crewAI](https://www.crewai.io/) framework in order to evaluate it further.
10+
11+
<!--more-->
12+
13+
What is crewAI and how does it help me? According to their [documentation website](https://docs.crewai.com/), crewAI is a:
14+
15+
> Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks.
16+
17+
That is probably better explained by an example and some are listed on the site, but I want to try implementing the introductory example.
18+
19+
20+
## Setup {#setup}
21+
22+
23+
#### Installing requirements {#installing-requirements}
24+
25+
I need the following available in a dev env shell:
26+
27+
- python
28+
- pip
29+
30+
I'll create a `flake.nix` file in order to have those available after executing `nix develop` in the terminal:
31+
32+
```nix
33+
{
34+
description = "A dev env with Python 3 and pip";
35+
36+
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
37+
38+
outputs = { self, nixpkgs }:
39+
let
40+
system = "x86_64-linux";
41+
pkgs = import nixpkgs { inherit system; };
42+
in
43+
{
44+
devShells.${system}.default = pkgs.mkShell {
45+
buildInputs = with pkgs; [
46+
python311Full
47+
python3Packages.pip
48+
];
49+
};
50+
};
51+
}
52+
```
53+
54+
55+
#### Create a python virtual env {#create-a-python-virtual-env}
56+
57+
```bash
58+
python -m venv .venv
59+
```
60+
61+
62+
#### Activate the virtual env {#activate-the-virtual-env}
63+
64+
```bash
65+
source .venv/bin/activate
66+
```
67+
68+
Check the path to the python executable:
69+
70+
```nil
71+
which python
72+
/home/john/dev/crewai/.venv/bin/python
73+
```
74+
75+
and I can see it has changed as expected from the previous path within the nix store.
76+
The required packages can now be installed and I list them in a `requirements.txt` file:
77+
78+
```txt
79+
crewai
80+
crewai[tools]
81+
duckduckgo-search
82+
langchain-community
83+
python-dotenv
84+
```
85+
86+
```bash
87+
pip install -r requirements.txt
88+
```
89+
90+
91+
## Assemble the agents {#assemble-the-agents}
92+
93+
We can now start writing the python script that will define the agents roles and capabilities and the agent specific tasks.
94+
95+
To be continued...

0 commit comments

Comments
 (0)