https://github.com/shreyaskarnik/agents-demo
https://github.com/shreyaskarnik/agents-demo
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shreyaskarnik/agents-demo
- Owner: shreyaskarnik
- License: mit
- Created: 2024-01-03T01:14:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-04T06:28:48.000Z (over 2 years ago)
- Last Synced: 2025-01-10T20:39:35.226Z (over 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# agents powered by Local LLMs
This repo contains code that accompanies the blog post
These agents are powered by [CrewAI](https://github.com/joaomdmoura/CrewAI)
## Custom Ollama Model
* [Customizing Ollama Models using Modelfile](https://github.com/jmorganca/ollama/blob/main/docs/modelfile.md)
* to create custom Ollama model using the Modelfile run the following command:
```bash
ollama create agent -f Modelfile
```
* Create a virtualenv
```bash
pip install - r requirements.txt
# setup jira secrets in https://github.com/shreyaskarnik/agents-demo/blob/main/agents.py#L16-L18
# make sure you input the correct project_key and num_weeks parameters in https://github.com/shreyaskarnik/agents-demo/blob/main/main.py#L9
python main.py
# the crew should now be starting
```