|
| 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... |
0 commit comments