mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-11 07:15:08 -05:00
When users mention agents by UUID in their goal description, we now: 1. Extract UUID v4 patterns from the search_query text 2. Fetch those agents directly by graph_id 3. Include them in the library_agents list for the LLM This ensures explicitly referenced agents are always available to the Agent Generator, even if text search wouldn't find them. Added: - extract_uuids_from_text(): extracts UUID v4 patterns from text - get_library_agent_by_graph_id(): fetches a single agent by graph_id - Integration in get_all_relevant_agents_for_generation()