aibtcdev / ai-agent-crew

Langchain + CrewAI powered AI agents with Bitcoin wallets.
https://aibtc.dev
21 stars 7 forks source link

Crew: handle meeting tasks #4

Open whoabuddy opened 2 months ago

whoabuddy commented 2 months ago

Before each meeting I set up the notes and agenda:

With each meeting I copy over the following list of tasks to execute:

Right now I save the video and transcript locally, and it'd be great to explore a crew that can handle this step by step to help format things.

We can break down the meeting minutes into three sections:

What we need to define in order to execute as a crew:

It would be great if after a meeting we simply had to:

  1. download the assets
  2. kick off the crew
  3. post the provided text to github/twitter

Then we can work on automating the posting part :japanese_ogre:

whoabuddy commented 1 month ago

Making some progress on this, new file prepare_for_meeting.py will search a list of links and summarize them, still some rough edges but a good step in the right direction. Also shows how to use the web scraping tool, pass context between tasks, and utilize gpt4o.

starting out and scraping a reddit page: image

taking the raw content and turning it into something useful image

finalizing it as a markdown list image

Next up will be getting it to use the compiled final answer across all of the links, then generate the agenda item for latest AI news - it feels like it's getting closer!