├── .gitignore ├── README.md ├── crewai-newsletter.png ├── logs ├── 2024-05-09_18-28-35_edit_task.md ├── 2024-05-09_18-28-35_newsletter_task.html └── 2024-05-09_18-28-35_research_task.md ├── poetry.lock ├── pyproject.toml ├── src ├── gui │ ├── __init_.py │ └── app.py └── newsletter_gen │ ├── __init__.py │ ├── config │ ├── agents.yaml │ ├── newsletter_template.html │ └── tasks.yaml │ ├── crew.py │ ├── main.py │ └── tools │ ├── __init__.py │ └── research.py └── test.html /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | logs/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/README.md -------------------------------------------------------------------------------- /crewai-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/crewai-newsletter.png -------------------------------------------------------------------------------- /logs/2024-05-09_18-28-35_edit_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/logs/2024-05-09_18-28-35_edit_task.md -------------------------------------------------------------------------------- /logs/2024-05-09_18-28-35_newsletter_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/logs/2024-05-09_18-28-35_newsletter_task.html -------------------------------------------------------------------------------- /logs/2024-05-09_18-28-35_research_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/logs/2024-05-09_18-28-35_research_task.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/gui/__init_.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/src/gui/app.py -------------------------------------------------------------------------------- /src/newsletter_gen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/newsletter_gen/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/src/newsletter_gen/config/agents.yaml -------------------------------------------------------------------------------- /src/newsletter_gen/config/newsletter_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/src/newsletter_gen/config/newsletter_template.html -------------------------------------------------------------------------------- /src/newsletter_gen/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/src/newsletter_gen/config/tasks.yaml -------------------------------------------------------------------------------- /src/newsletter_gen/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/src/newsletter_gen/crew.py -------------------------------------------------------------------------------- /src/newsletter_gen/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/src/newsletter_gen/main.py -------------------------------------------------------------------------------- /src/newsletter_gen/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/newsletter_gen/tools/research.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/src/newsletter_gen/tools/research.py -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-ao/exa-crewai/HEAD/test.html --------------------------------------------------------------------------------