Skip to content

Commit

Permalink
Merge pull request #1399 from YoungPhlo/docs/community-streams
Browse files Browse the repository at this point in the history
docs: Add "What Did You Get Done This Week? #6" notes
  • Loading branch information
monilpat authored Dec 23, 2024
2 parents c823cac + 8bdd67c commit 55a7eae
Show file tree
Hide file tree
Showing 6 changed files with 273 additions and 230 deletions.
87 changes: 23 additions & 64 deletions docs/community/Streams/12-2024/2024-12-03.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,73 +8,32 @@ description: "Building Complex AI Agents with Actions, Providers, & Evaluators"

**Building Complex AI Agents with Actions, Providers, & Evaluators**

Date: 2024-12-03
YouTube Link: https://www.youtube.com/watch?v=XenGeAcPAQo
- Date: 2024-12-03
- YouTube Link: https://www.youtube.com/watch?v=XenGeAcPAQo

## Timestamps

**00:03:33** - Shift in focus from characters (Dev School Part 1) to agent capabilities
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=213

**00:07:09** - Deep dive into providers, actions, and evaluators, the core building blocks of Eliza
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=429

**00:07:28** - Discussion about actions vs. tools, favoring decoupled intent and action execution
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=448

**00:18:02** - Explanation of providers and their function as information sources for agents
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=1082

**00:20:15** - Introduction to evaluators and their role in agent reflection and state analysis
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=1215

**00:29:22** - Brief overview of clients as connectors to external platforms
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=1762

**00:31:02** - Description of adapters and their function in database interactions
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=1862

**00:34:02** - Discussion about plugins as bundles of core components, examples, and recommendations
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=2042

**00:40:31** - Live Coding Demo begins: Creating a new plugin from scratch (DevSchoolExamplePlugin)
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=2431

**00:47:54** - Implementing the simple HelloWorldAction
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=2791

**01:00:26** - Implementing the CurrentNewsAction (fetching and formatting news data)
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=3626

**01:22:09** - Demonstrating the Eliza Client for interacting with agents locally
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=4929

**01:23:54** - Q&A: Plugin usage in character files, installation, Eliza vs. Eliza Starter
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=5034

**01:36:17** - Saving agent responses as memories in the database
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=5777

**01:43:06** - Using prompts for data extraction within actions
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=6186

**01:51:54** - Importance of deleting the database during development to avoid context issues
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=6714

**01:57:04** - Viewing agent context via console logs to understand model inputs
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=7024

**02:07:07** - Explanation of memory management with knowledge, facts, and lore
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=7627

**02:16:53** - Q&A: Prompt engineering opportunities, knowledge chunking and retrieval
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=8213

**02:22:57** - Call for contributions: Encouraging viewers to create their own actions and plugins
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=8577

**02:26:31** - Closing remarks and future DevSchool session announcements
- Link: https://www.youtube.com/watch?v=XenGeAcPAQo&t=8791
- [00:03:33](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=213>) - Shift in focus from characters (DevSchool Part 1) to agent capabilities.
- [00:07:09](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=429>) - Deep dive into providers, actions, and evaluators, the core building blocks of Eliza.
- [00:07:28](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=448>) - Discussion about actions vs. tools, favoring decoupled intent and action execution.
- [00:18:02](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=1082>) - Explanation of providers and their function as information sources for agents.
- [00:20:15](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=1215>) - Introduction to evaluators and their role in agent reflection and state analysis.
- [00:29:22](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=1762>) - Brief overview of clients as connectors to external platforms.
- [00:31:02](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=1862>) - Description of adapters and their function in database interactions.
- [00:34:02](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=2042>) - Discussion about plugins as bundles of core components, examples, and recommendations.
- [00:40:31](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=2431>) - Live Coding Demo begins: Creating a new plugin from scratch (DevSchoolExamplePlugin).
- [00:47:54](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=2874>) - Implementing the simple HelloWorldAction.
- [01:00:26](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=3626>) - Implementing the CurrentNewsAction (fetching and formatting news data).
- [01:22:09](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=4929>) - Demonstrating the Eliza Client for interacting with agents locally.
- [01:23:54](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=5034>) - Q&A: Plugin usage in character files, installation, Eliza vs. Eliza Starter.
- [01:36:17](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=5777>) - Saving agent responses as memories in the database.
- [01:43:06](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=6186>) - Using prompts for data extraction within actions.
- [01:51:54](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=6714>) - Importance of deleting the database during development to avoid context issues.
- [01:57:04](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=7024>) - Viewing agent context via console logs to understand model inputs.
- [02:07:07](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=7627>) - Explanation of memory management with knowledge, facts, and lore.
- [02:16:53](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=8213>) - Q&A: Prompt engineering opportunities, knowledge chunking and retrieval.
- [02:22:57](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=8577>) - Call for contributions: Encouraging viewers to create their own actions and plugins.
- [02:26:31](<https://www.youtube.com/watch?v=XenGeAcPAQo&t=8791>) - Closing remarks and future DevSchool session announcements.

## Summary

Expand Down
4 changes: 2 additions & 2 deletions docs/community/Streams/12-2024/2024-12-05.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ description: "Form-Filling Frenzy & Eliza's Wild Ride"

**Form-Filling Frenzy & Eliza's Wild Ride**

Date: 2024-12-05
YouTube Link: https://www.youtube.com/watch?v=Y1DiqSVy4aU
- Date: 2024-12-05
- YouTube Link: https://www.youtube.com/watch?v=Y1DiqSVy4aU

## Timestamps

Expand Down
131 changes: 46 additions & 85 deletions docs/community/Streams/12-2024/2024-12-06.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,95 +8,56 @@ description: "Communications, Updates and Accountability"

**Communications, Updates and Accountability**

Date: 2024-12-06
Twitter Spaces: https://x.com/i/spaces/1lDxLlryWXaxm
YouTube Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4
- Date: 2024-12-06
- Twitter Spaces: https://x.com/i/spaces/1lDxLlryWXaxm
- YouTube Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4

## Timestamps

**00:01:09** - Meeting start, expectations (5-minute updates, focus on this week's achievements). - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=69

**00:02:50** - Shaw's update (dev school, in-person meetup). - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=170

**00:04:59** - Project growth, coordination challenges, need for AI project management tools. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=299

**00:09:22** - Call for contributors to speak, starting with Reality Spiral. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=562

**00:10:04** - Reality Spiral: Github integration, testing framework, Coinbase work. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=604

**00:17:13** - Boyaloxer: Plugin Feel (emotional adjustments for agents). - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1033

**00:18:37** - Spaceodili: Discord growth, summarization systems. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1117

**00:19:33** - Yodamaster726: Using agents in university classes, championing Llama. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1173

**00:23:32** - Wiki: Suggestion for a project newsletter. Discussion about contributor summarization. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1412

**00:26:00** - Hashwarlock: Remote Attestation Explorer upgrades, Reddit client, TEE as a service. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1560

**00:28:45** - KyleSt4rgarden: Eliza Framework Council, focus on stability and unified messaging bus. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1725

**00:33:22** - Nasdao\_: Self-sustaining AI DAO, AI agent running validator. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=2002

**00:34:57** - Evepredict: Slack integration, Reddit client/search, text/video to video project. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=2097

**00:44:02** - ByornOeste: Dark Sun project launch, uncensored agent, video generator. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=2642

**00:47:37** - Empyrealdev: LayerZero integrations, Python tooling for Solana. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=2857

**00:52:16** - SkotiVi: Question about elizaos bot tech stack (it's Eliza). - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3136

**00:54:19** - YoungBalla1000x: 15-year-old builder, project update, wallet drained. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3259

**00:56:47** - SOL_CryptoGamer: Cizem’s PFP collection launch and success. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3407

**01:02:17** - Angelocass: Experimenting with agents, excited about the potential. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3737

**01:03:15** - DAOJonesPumpAI: Spam bot detection, FAL API PR, Solana wallet prototype. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3795

**01:06:38** - RodrigoSotoAlt: 3D NFTs for Bosu, 3D portal, using latest Eliza version. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3998

**01:10:43** - cryptocomix1: Job interviews, learning about AI agents, interested in 3D design. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=4243

**01:13:54** - TheBigOneGG: ERC20/SPL integration in game, elizaos cosmetic items. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=4434

**01:15:18** - Louround\_: Thales project update, data sources, MPC wallet plugin. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=4518

**01:22:59** - btspoony: Flow blockchain integration PR merged, multi-account control. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=4979

**01:25:48** - 0xamericanspiri: Goldman Stanley DAO launch on daos.fun, using hyperliquid airdrop. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=5148

**01:28:24** - Hawkeye_Picks: Experimenting with Degen Spartan AI, exploring AI in collectibles. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=5304

**01:36:33** - BV_Bloom1: Live video chat plugin modifications, integrating conversation models into 3D environment. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=5793

**01:39:44** - pawgDAO: Gamified governance experiments, using Cursor, integrating AI16z. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=5984

**01:43:24** - jpegyguggenheim: Artist interested in AI, exploring dev school. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6204

**01:44:07** - heathenft: Super Swarm DevNet launch on fxn. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6247

**01:46:28** - Roberto9211999: (Brief interruption) Grok discussion. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6388

**01:48:18** - godfreymeyer: Unity scaffolding for 3D AI TV project. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6498

**01:51:16** - Victor28612594: Fungo team building AlphaScan agent, data enrichment plugin. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6676

**01:53:23** - SidDegen: OnlyCalls launch, data pipeline, beta release plans. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6803

**01:55:00** - O_on_X: Ico onboarding, 2D video models, comfyUI for art. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6900

**02:01:00** - yikesawjeez: Memecoin cleanup crew, github.io profiles, security team, screenpipe/supabase. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=7260

**02:05:31** - TrenchBuddy: Launching AI agent, working on EC2 and authorization. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=7531

**02:09:49** - TSSnft: Sneakerhead Society introduction, exploring AI agent solutions. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=7789

**02:11:40** - SidDegen: Question about the future of AI agents. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=7900
## Timestamps

**02:16:15** - GoatOfGamblers: Building a permissionless polymarket for memecoins. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=8175
- [00:01:09](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=69>) - Meeting start, expectations (5-minute updates, focus on this week's achievements).
- [00:02:50](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=170>) - Shaw's update (dev school, in-person meetup).
- [00:04:59](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=299>) - Project growth, coordination challenges, need for AI project management tools.
- [00:09:22](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=562>) - Call for contributors to speak, starting with Reality Spiral.
- [00:10:04](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=604>) - **Reality Spiral**: Github integration, testing framework, Coinbase work.
- [00:17:13](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1033>) - **Boyaloxer**: Plugin Feel (emotional adjustments for agents).
- [00:18:37](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1117>) - **Spaceodili**: Discord growth, summarization systems.
- [00:19:33](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1173>) - **Yodamaster726**: Using agents in university classes, championing Llama.
- [00:23:32](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1412>) - **Wiki**: Suggestion for a project newsletter. Discussion about contributor summarization.
- [00:26:00](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1560>) - **Hashwarlock**: Remote Attestation Explorer upgrades, Reddit client, TEE as a service.
- [00:28:45](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=1725>) - **KyleSt4rgarden**: Eliza Framework Council, focus on stability and unified messaging bus.
- [00:33:22](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=2002>) - **Nasdao_**: Self-sustaining AI DAO, AI agent running validator.
- [00:34:57](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=2097>) - **Evepredict**: Slack integration, Reddit client/search, text/video to video project.
- [00:44:02](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=2642>) - **ByornOeste**: Dark Sun project launch, uncensored agent, video generator.
- [00:47:37](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=2857>) - **Empyrealdev**: LayerZero integrations, Python tooling for Solana.
- [00:52:16](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3136>) - **SkotiVi**: Question about ai16z bot tech stack (it's Eliza).
- [00:54:19](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3259>) - **YoungBalla1000x**: 15-year-old builder, project update, wallet drained.
- [00:56:47](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3407>) - **SOL_CryptoGamer**: Cizem's PFP collection launch and success.
- [01:02:17](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3737>) - **Angelocass**: Experimenting with agents, excited about the potential.
- [01:03:15](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3795>) - **DAOJonesPumpAI**: Spam bot detection, FAL API PR, Solana wallet prototype.
- [01:06:38](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=3998>) - **RodrigoSotoAlt**: 3D NFTs for Bosu, 3D portal, using latest Eliza version.
- [01:10:43](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=4243>) - **cryptocomix1**: Job interviews, learning about AI agents, interested in 3D design.
- [01:13:54](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=4434>) - **TheBigOneGG**: ERC20/SPL integration in game, ai16z cosmetic items.
- [01:15:18](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=4518>) - **Louround_**: Thales project update, data sources, MPC wallet plugin.
- [01:22:59](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=4979>) - **btspoony**: Flow blockchain integration PR merged, multi-account control.
- [01:25:48](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=5148>) - **0xamericanspiri**: Goldman Stanley DAO launch on daos.fun, using hyperliquid airdrop.
- [01:28:24](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=5304>) - **Hawkeye_Picks**: Experimenting with Degen Spartan AI, exploring AI in collectibles.
- [01:36:33](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=5793>) - **BV_Bloom1**: Live video chat plugin modifications, integrating conversation models into 3D environment.
- [01:39:44](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=5984>) - **pawgDAO**: Gamified governance experiments, using Cursor, integrating AI16z.
- [01:43:24](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6204>) - **jpegyguggenheim**: Artist interested in AI, exploring dev school.
- [01:44:07](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6247>) - **heathenft**: Super Swarm DevNet launch on fxn.
- [01:46:28](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6388>) - **Roberto9211999**: (Brief interruption) Grok discussion.
- [01:48:18](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6498>) - **godfreymeyer**: Unity scaffolding for 3D AI TV project.
- [01:51:16](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6676>) - **Victor28612594**: Fungo team building AlphaScan agent, data enrichment plugin.
- [01:53:23](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6803>) - **SidDegen**: OnlyCalls launch, data pipeline, beta release plans.
- [01:55:00](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=6900>) - **O_on_X**: Ico onboarding, 2D video models, comfyUI for art.
- [02:01:00](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=7260>) - **yikesawjeez**: Memecoin cleanup crew, github.io profiles, security team, screenpipe/supabase.
- [02:05:31](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=7531>) - **TrenchBuddy**: Launching AI agent, working on EC2 and authorization.
- [02:09:49](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=7789>) - **TSSnft**: Sneakerhead Society introduction, exploring AI agent solutions.
- [02:11:40](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=7900>) - **SidDegen**: Question about the future of AI agents.
- [02:16:15](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=8175>) - **GoatOfGamblers**: Building a permissionless polymarket for memecoins.
- [02:18:01](<https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=8281>) - Shaw's closing remarks, focus on stability and applications, call for contributions.

**02:18:01** - Shaw's closing remarks, focus on stability and applications, call for contributions. - Link: https://www.youtube.com/watch?v=r3Z4lvu_ic4&t=8281

## Summary

Expand Down
4 changes: 2 additions & 2 deletions docs/community/Streams/12-2024/2024-12-10.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ description: "AI Pizza: Hacking Eliza for Domino's Delivery (plus TEE Deep Dive)

**AI Pizza: Hacking Eliza for Domino's Delivery (plus TEE Deep Dive)**

Date: 2024-12-10
YouTube Link: https://www.youtube.com/watch?v=6I9e9pJprDI
- Date: 2024-12-10
- YouTube Link: https://www.youtube.com/watch?v=6I9e9pJprDI

## Timestamps

Expand Down
Loading

0 comments on commit 55a7eae

Please sign in to comment.