├── .clinerules ├── .cursorrules ├── .dockerignore ├── .env.sample ├── .gitignore ├── .windsurfrules ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── banner.png ├── example.png └── youtube_thumbnail.png ├── docs ├── AutoGen Core │ ├── 01_agent.md │ ├── 02_messaging_system__topic___subscription_.md │ ├── 03_agentruntime.md │ ├── 04_tool.md │ ├── 05_chatcompletionclient.md │ ├── 06_chatcompletioncontext.md │ ├── 07_memory.md │ ├── 08_component.md │ └── index.md ├── Browser Use │ ├── 01_agent.md │ ├── 02_system_prompt.md │ ├── 03_browsercontext.md │ ├── 04_dom_representation.md │ ├── 05_action_controller___registry.md │ ├── 06_message_manager.md │ ├── 07_data_structures__views_.md │ ├── 08_telemetry_service.md │ └── index.md ├── Celery │ ├── 01_celery_app.md │ ├── 02_configuration.md │ ├── 03_task.md │ ├── 04_broker_connection__amqp_.md │ ├── 05_worker.md │ ├── 06_result_backend.md │ ├── 07_beat__scheduler_.md │ ├── 08_canvas__signatures___primitives_.md │ ├── 09_events.md │ ├── 10_bootsteps.md │ └── index.md ├── Click │ ├── 01_command___group.md │ ├── 02_decorators.md │ ├── 03_parameter__option___argument_.md │ ├── 04_paramtype.md │ ├── 05_context.md │ ├── 06_term_ui__terminal_user_interface_.md │ ├── 07_click_exceptions.md │ └── index.md ├── Codex │ ├── 01_terminal_ui__ink_components_.md │ ├── 02_input_handling__textbuffer_editor_.md │ ├── 03_agent_loop.md │ ├── 04_approval_policy___security.md │ ├── 05_response___tool_call_handling.md │ ├── 06_command_execution___sandboxing.md │ ├── 07_configuration_management.md │ ├── 08_single_pass_mode.md │ └── index.md ├── Crawl4AI │ ├── 01_asynccrawlerstrategy.md │ ├── 02_asyncwebcrawler.md │ ├── 03_crawlerrunconfig.md │ ├── 04_contentscrapingstrategy.md │ ├── 05_relevantcontentfilter.md │ ├── 06_extractionstrategy.md │ ├── 07_crawlresult.md │ ├── 08_deepcrawlstrategy.md │ ├── 09_cachecontext___cachemode.md │ ├── 10_basedispatcher.md │ └── index.md ├── CrewAI │ ├── 01_crew.md │ ├── 02_agent.md │ ├── 03_task.md │ ├── 04_tool.md │ ├── 05_process.md │ ├── 06_llm.md │ ├── 07_memory.md │ ├── 08_knowledge.md │ └── index.md ├── DSPy │ ├── 01_module___program.md │ ├── 02_signature.md │ ├── 03_example.md │ ├── 04_predict.md │ ├── 05_lm__language_model_client_.md │ ├── 06_rm__retrieval_model_client_.md │ ├── 07_evaluate.md │ ├── 08_teleprompter___optimizer.md │ ├── 09_adapter.md │ ├── 10_settings.md │ └── index.md ├── FastAPI │ ├── 01_fastapi_application___routing.md │ ├── 02_path_operations___parameter_declaration.md │ ├── 03_data_validation___serialization__pydantic_.md │ ├── 04_openapi___automatic_docs.md │ ├── 05_dependency_injection.md │ ├── 06_error_handling.md │ ├── 07_security_utilities.md │ ├── 08_background_tasks.md │ └── index.md ├── Flask │ ├── 01_application_object___flask__.md │ ├── 02_routing_system.md │ ├── 03_request_and_response_objects.md │ ├── 04_templating__jinja2_integration_.md │ ├── 05_context_globals___current_app____request____session____g__.md │ ├── 06_configuration___config__.md │ ├── 07_application_and_request_contexts.md │ ├── 08_blueprints.md │ └── index.md ├── Google A2A │ ├── 01_agent_card.md │ ├── 02_task.md │ ├── 03_a2a_protocol___core_types.md │ ├── 04_a2a_server_implementation.md │ ├── 05_a2a_client_implementation.md │ ├── 06_task_handling_logic__server_side_.md │ ├── 07_streaming_communication__sse_.md │ ├── 08_multi_agent_orchestration__host_agent_.md │ ├── 09_demo_ui_application___service.md │ └── index.md ├── LangGraph │ ├── 01_graph___stategraph.md │ ├── 02_nodes___pregelnode__.md │ ├── 03_channels.md │ ├── 04_control_flow_primitives___branch____send____interrupt__.md │ ├── 05_pregel_execution_engine.md │ ├── 06_checkpointer___basecheckpointsaver__.md │ └── index.md ├── LevelDB │ ├── 01_table___sstable___tablecache.md │ ├── 02_memtable.md │ ├── 03_write_ahead_log__wal____logwriter_logreader.md │ ├── 04_dbimpl.md │ ├── 05_writebatch.md │ ├── 06_version___versionset.md │ ├── 07_iterator.md │ ├── 08_compaction.md │ ├── 09_internalkey___dbformat.md │ └── index.md ├── MCP Python SDK │ ├── 01_cli___mcp__command_.md │ ├── 02_fastmcp_server___fastmcp__.md │ ├── 03_fastmcp_resources___resource____resourcemanager__.md │ ├── 04_fastmcp_tools___tool____toolmanager__.md │ ├── 05_fastmcp_prompts___prompt____promptmanager__.md │ ├── 06_fastmcp_context___context__.md │ ├── 07_mcp_protocol_types.md │ ├── 08_client_server_sessions___clientsession____serversession__.md │ ├── 09_communication_transports__stdio__sse__websocket__memory_.md │ └── index.md ├── NumPy Core │ ├── 01_ndarray__n_dimensional_array_.md │ ├── 02_dtype__data_type_object_.md │ ├── 03_ufunc__universal_function_.md │ ├── 04_numeric_types___numerictypes__.md │ ├── 05_array_printing___arrayprint__.md │ ├── 06_multiarray_module.md │ ├── 07_umath_module.md │ ├── 08___array_function___protocol___overrides___overrides__.md │ └── index.md ├── OpenManus │ ├── 01_llm.md │ ├── 02_message___memory.md │ ├── 03_baseagent.md │ ├── 04_tool___toolcollection.md │ ├── 05_baseflow.md │ ├── 06_schema.md │ ├── 07_configuration__config_.md │ ├── 08_dockersandbox.md │ ├── 09_mcp__model_context_protocol_.md │ └── index.md ├── PocketFlow │ ├── 01_shared_state___shared__dictionary__.md │ ├── 02_node___basenode____node____asyncnode___.md │ ├── 03_actions___transitions_.md │ ├── 04_flow___flow____asyncflow___.md │ ├── 05_asynchronous_processing___asyncnode____asyncflow___.md │ ├── 06_batch_processing___batchnode____batchflow____asyncparallelbatchnode___.md │ ├── 07_a2a__agent_to_agent__communication_framework_.md │ └── index.md ├── Pydantic Core │ ├── 01_basemodel.md │ ├── 02_fields__fieldinfo___field_function_.md │ ├── 03_configuration__configdict___configwrapper_.md │ ├── 04_custom_logic__decorators___annotated_helpers_.md │ ├── 05_core_schema___validation_serialization.md │ ├── 06_typeadapter.md │ └── index.md ├── Requests │ ├── 01_functional_api.md │ ├── 02_request___response_models.md │ ├── 03_session.md │ ├── 04_cookie_jar.md │ ├── 05_authentication_handlers.md │ ├── 06_exception_hierarchy.md │ ├── 07_transport_adapters.md │ ├── 08_hook_system.md │ └── index.md ├── SmolaAgents │ ├── 01_multistepagent.md │ ├── 02_model_interface.md │ ├── 03_tool.md │ ├── 04_agentmemory.md │ ├── 05_prompttemplates.md │ ├── 06_pythonexecutor.md │ ├── 07_agenttype.md │ ├── 08_agentlogger___monitor.md │ └── index.md ├── _config.yml ├── design.md └── index.md ├── flow.py ├── main.py ├── nodes.py ├── requirements.txt └── utils ├── __init__.py ├── call_llm.py ├── crawl_github_files.py └── crawl_local_files.py /.clinerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/.clinerules -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/.cursorrules -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/.gitignore -------------------------------------------------------------------------------- /.windsurfrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/.windsurfrules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/assets/example.png -------------------------------------------------------------------------------- /assets/youtube_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/assets/youtube_thumbnail.png -------------------------------------------------------------------------------- /docs/AutoGen Core/01_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/01_agent.md -------------------------------------------------------------------------------- /docs/AutoGen Core/02_messaging_system__topic___subscription_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/02_messaging_system__topic___subscription_.md -------------------------------------------------------------------------------- /docs/AutoGen Core/03_agentruntime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/03_agentruntime.md -------------------------------------------------------------------------------- /docs/AutoGen Core/04_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/04_tool.md -------------------------------------------------------------------------------- /docs/AutoGen Core/05_chatcompletionclient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/05_chatcompletionclient.md -------------------------------------------------------------------------------- /docs/AutoGen Core/06_chatcompletioncontext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/06_chatcompletioncontext.md -------------------------------------------------------------------------------- /docs/AutoGen Core/07_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/07_memory.md -------------------------------------------------------------------------------- /docs/AutoGen Core/08_component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/08_component.md -------------------------------------------------------------------------------- /docs/AutoGen Core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/AutoGen Core/index.md -------------------------------------------------------------------------------- /docs/Browser Use/01_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/01_agent.md -------------------------------------------------------------------------------- /docs/Browser Use/02_system_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/02_system_prompt.md -------------------------------------------------------------------------------- /docs/Browser Use/03_browsercontext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/03_browsercontext.md -------------------------------------------------------------------------------- /docs/Browser Use/04_dom_representation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/04_dom_representation.md -------------------------------------------------------------------------------- /docs/Browser Use/05_action_controller___registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/05_action_controller___registry.md -------------------------------------------------------------------------------- /docs/Browser Use/06_message_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/06_message_manager.md -------------------------------------------------------------------------------- /docs/Browser Use/07_data_structures__views_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/07_data_structures__views_.md -------------------------------------------------------------------------------- /docs/Browser Use/08_telemetry_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/08_telemetry_service.md -------------------------------------------------------------------------------- /docs/Browser Use/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Browser Use/index.md -------------------------------------------------------------------------------- /docs/Celery/01_celery_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/01_celery_app.md -------------------------------------------------------------------------------- /docs/Celery/02_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/02_configuration.md -------------------------------------------------------------------------------- /docs/Celery/03_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/03_task.md -------------------------------------------------------------------------------- /docs/Celery/04_broker_connection__amqp_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/04_broker_connection__amqp_.md -------------------------------------------------------------------------------- /docs/Celery/05_worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/05_worker.md -------------------------------------------------------------------------------- /docs/Celery/06_result_backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/06_result_backend.md -------------------------------------------------------------------------------- /docs/Celery/07_beat__scheduler_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/07_beat__scheduler_.md -------------------------------------------------------------------------------- /docs/Celery/08_canvas__signatures___primitives_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/08_canvas__signatures___primitives_.md -------------------------------------------------------------------------------- /docs/Celery/09_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/09_events.md -------------------------------------------------------------------------------- /docs/Celery/10_bootsteps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/10_bootsteps.md -------------------------------------------------------------------------------- /docs/Celery/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Celery/index.md -------------------------------------------------------------------------------- /docs/Click/01_command___group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Click/01_command___group.md -------------------------------------------------------------------------------- /docs/Click/02_decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Click/02_decorators.md -------------------------------------------------------------------------------- /docs/Click/03_parameter__option___argument_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Click/03_parameter__option___argument_.md -------------------------------------------------------------------------------- /docs/Click/04_paramtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Click/04_paramtype.md -------------------------------------------------------------------------------- /docs/Click/05_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Click/05_context.md -------------------------------------------------------------------------------- /docs/Click/06_term_ui__terminal_user_interface_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Click/06_term_ui__terminal_user_interface_.md -------------------------------------------------------------------------------- /docs/Click/07_click_exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Click/07_click_exceptions.md -------------------------------------------------------------------------------- /docs/Click/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Click/index.md -------------------------------------------------------------------------------- /docs/Codex/01_terminal_ui__ink_components_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/01_terminal_ui__ink_components_.md -------------------------------------------------------------------------------- /docs/Codex/02_input_handling__textbuffer_editor_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/02_input_handling__textbuffer_editor_.md -------------------------------------------------------------------------------- /docs/Codex/03_agent_loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/03_agent_loop.md -------------------------------------------------------------------------------- /docs/Codex/04_approval_policy___security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/04_approval_policy___security.md -------------------------------------------------------------------------------- /docs/Codex/05_response___tool_call_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/05_response___tool_call_handling.md -------------------------------------------------------------------------------- /docs/Codex/06_command_execution___sandboxing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/06_command_execution___sandboxing.md -------------------------------------------------------------------------------- /docs/Codex/07_configuration_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/07_configuration_management.md -------------------------------------------------------------------------------- /docs/Codex/08_single_pass_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/08_single_pass_mode.md -------------------------------------------------------------------------------- /docs/Codex/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Codex/index.md -------------------------------------------------------------------------------- /docs/Crawl4AI/01_asynccrawlerstrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/01_asynccrawlerstrategy.md -------------------------------------------------------------------------------- /docs/Crawl4AI/02_asyncwebcrawler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/02_asyncwebcrawler.md -------------------------------------------------------------------------------- /docs/Crawl4AI/03_crawlerrunconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/03_crawlerrunconfig.md -------------------------------------------------------------------------------- /docs/Crawl4AI/04_contentscrapingstrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/04_contentscrapingstrategy.md -------------------------------------------------------------------------------- /docs/Crawl4AI/05_relevantcontentfilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/05_relevantcontentfilter.md -------------------------------------------------------------------------------- /docs/Crawl4AI/06_extractionstrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/06_extractionstrategy.md -------------------------------------------------------------------------------- /docs/Crawl4AI/07_crawlresult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/07_crawlresult.md -------------------------------------------------------------------------------- /docs/Crawl4AI/08_deepcrawlstrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/08_deepcrawlstrategy.md -------------------------------------------------------------------------------- /docs/Crawl4AI/09_cachecontext___cachemode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/09_cachecontext___cachemode.md -------------------------------------------------------------------------------- /docs/Crawl4AI/10_basedispatcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/10_basedispatcher.md -------------------------------------------------------------------------------- /docs/Crawl4AI/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Crawl4AI/index.md -------------------------------------------------------------------------------- /docs/CrewAI/01_crew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/01_crew.md -------------------------------------------------------------------------------- /docs/CrewAI/02_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/02_agent.md -------------------------------------------------------------------------------- /docs/CrewAI/03_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/03_task.md -------------------------------------------------------------------------------- /docs/CrewAI/04_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/04_tool.md -------------------------------------------------------------------------------- /docs/CrewAI/05_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/05_process.md -------------------------------------------------------------------------------- /docs/CrewAI/06_llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/06_llm.md -------------------------------------------------------------------------------- /docs/CrewAI/07_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/07_memory.md -------------------------------------------------------------------------------- /docs/CrewAI/08_knowledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/08_knowledge.md -------------------------------------------------------------------------------- /docs/CrewAI/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/CrewAI/index.md -------------------------------------------------------------------------------- /docs/DSPy/01_module___program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/01_module___program.md -------------------------------------------------------------------------------- /docs/DSPy/02_signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/02_signature.md -------------------------------------------------------------------------------- /docs/DSPy/03_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/03_example.md -------------------------------------------------------------------------------- /docs/DSPy/04_predict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/04_predict.md -------------------------------------------------------------------------------- /docs/DSPy/05_lm__language_model_client_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/05_lm__language_model_client_.md -------------------------------------------------------------------------------- /docs/DSPy/06_rm__retrieval_model_client_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/06_rm__retrieval_model_client_.md -------------------------------------------------------------------------------- /docs/DSPy/07_evaluate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/07_evaluate.md -------------------------------------------------------------------------------- /docs/DSPy/08_teleprompter___optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/08_teleprompter___optimizer.md -------------------------------------------------------------------------------- /docs/DSPy/09_adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/09_adapter.md -------------------------------------------------------------------------------- /docs/DSPy/10_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/10_settings.md -------------------------------------------------------------------------------- /docs/DSPy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/DSPy/index.md -------------------------------------------------------------------------------- /docs/FastAPI/01_fastapi_application___routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/01_fastapi_application___routing.md -------------------------------------------------------------------------------- /docs/FastAPI/02_path_operations___parameter_declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/02_path_operations___parameter_declaration.md -------------------------------------------------------------------------------- /docs/FastAPI/03_data_validation___serialization__pydantic_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/03_data_validation___serialization__pydantic_.md -------------------------------------------------------------------------------- /docs/FastAPI/04_openapi___automatic_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/04_openapi___automatic_docs.md -------------------------------------------------------------------------------- /docs/FastAPI/05_dependency_injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/05_dependency_injection.md -------------------------------------------------------------------------------- /docs/FastAPI/06_error_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/06_error_handling.md -------------------------------------------------------------------------------- /docs/FastAPI/07_security_utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/07_security_utilities.md -------------------------------------------------------------------------------- /docs/FastAPI/08_background_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/08_background_tasks.md -------------------------------------------------------------------------------- /docs/FastAPI/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/FastAPI/index.md -------------------------------------------------------------------------------- /docs/Flask/01_application_object___flask__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/01_application_object___flask__.md -------------------------------------------------------------------------------- /docs/Flask/02_routing_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/02_routing_system.md -------------------------------------------------------------------------------- /docs/Flask/03_request_and_response_objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/03_request_and_response_objects.md -------------------------------------------------------------------------------- /docs/Flask/04_templating__jinja2_integration_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/04_templating__jinja2_integration_.md -------------------------------------------------------------------------------- /docs/Flask/05_context_globals___current_app____request____session____g__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/05_context_globals___current_app____request____session____g__.md -------------------------------------------------------------------------------- /docs/Flask/06_configuration___config__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/06_configuration___config__.md -------------------------------------------------------------------------------- /docs/Flask/07_application_and_request_contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/07_application_and_request_contexts.md -------------------------------------------------------------------------------- /docs/Flask/08_blueprints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/08_blueprints.md -------------------------------------------------------------------------------- /docs/Flask/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Flask/index.md -------------------------------------------------------------------------------- /docs/Google A2A/01_agent_card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/01_agent_card.md -------------------------------------------------------------------------------- /docs/Google A2A/02_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/02_task.md -------------------------------------------------------------------------------- /docs/Google A2A/03_a2a_protocol___core_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/03_a2a_protocol___core_types.md -------------------------------------------------------------------------------- /docs/Google A2A/04_a2a_server_implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/04_a2a_server_implementation.md -------------------------------------------------------------------------------- /docs/Google A2A/05_a2a_client_implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/05_a2a_client_implementation.md -------------------------------------------------------------------------------- /docs/Google A2A/06_task_handling_logic__server_side_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/06_task_handling_logic__server_side_.md -------------------------------------------------------------------------------- /docs/Google A2A/07_streaming_communication__sse_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/07_streaming_communication__sse_.md -------------------------------------------------------------------------------- /docs/Google A2A/08_multi_agent_orchestration__host_agent_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/08_multi_agent_orchestration__host_agent_.md -------------------------------------------------------------------------------- /docs/Google A2A/09_demo_ui_application___service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/09_demo_ui_application___service.md -------------------------------------------------------------------------------- /docs/Google A2A/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Google A2A/index.md -------------------------------------------------------------------------------- /docs/LangGraph/01_graph___stategraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LangGraph/01_graph___stategraph.md -------------------------------------------------------------------------------- /docs/LangGraph/02_nodes___pregelnode__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LangGraph/02_nodes___pregelnode__.md -------------------------------------------------------------------------------- /docs/LangGraph/03_channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LangGraph/03_channels.md -------------------------------------------------------------------------------- /docs/LangGraph/04_control_flow_primitives___branch____send____interrupt__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LangGraph/04_control_flow_primitives___branch____send____interrupt__.md -------------------------------------------------------------------------------- /docs/LangGraph/05_pregel_execution_engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LangGraph/05_pregel_execution_engine.md -------------------------------------------------------------------------------- /docs/LangGraph/06_checkpointer___basecheckpointsaver__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LangGraph/06_checkpointer___basecheckpointsaver__.md -------------------------------------------------------------------------------- /docs/LangGraph/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LangGraph/index.md -------------------------------------------------------------------------------- /docs/LevelDB/01_table___sstable___tablecache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/01_table___sstable___tablecache.md -------------------------------------------------------------------------------- /docs/LevelDB/02_memtable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/02_memtable.md -------------------------------------------------------------------------------- /docs/LevelDB/03_write_ahead_log__wal____logwriter_logreader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/03_write_ahead_log__wal____logwriter_logreader.md -------------------------------------------------------------------------------- /docs/LevelDB/04_dbimpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/04_dbimpl.md -------------------------------------------------------------------------------- /docs/LevelDB/05_writebatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/05_writebatch.md -------------------------------------------------------------------------------- /docs/LevelDB/06_version___versionset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/06_version___versionset.md -------------------------------------------------------------------------------- /docs/LevelDB/07_iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/07_iterator.md -------------------------------------------------------------------------------- /docs/LevelDB/08_compaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/08_compaction.md -------------------------------------------------------------------------------- /docs/LevelDB/09_internalkey___dbformat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/09_internalkey___dbformat.md -------------------------------------------------------------------------------- /docs/LevelDB/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/LevelDB/index.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/01_cli___mcp__command_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/01_cli___mcp__command_.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/02_fastmcp_server___fastmcp__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/02_fastmcp_server___fastmcp__.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/03_fastmcp_resources___resource____resourcemanager__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/03_fastmcp_resources___resource____resourcemanager__.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/04_fastmcp_tools___tool____toolmanager__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/04_fastmcp_tools___tool____toolmanager__.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/05_fastmcp_prompts___prompt____promptmanager__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/05_fastmcp_prompts___prompt____promptmanager__.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/06_fastmcp_context___context__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/06_fastmcp_context___context__.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/07_mcp_protocol_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/07_mcp_protocol_types.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/08_client_server_sessions___clientsession____serversession__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/08_client_server_sessions___clientsession____serversession__.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/09_communication_transports__stdio__sse__websocket__memory_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/09_communication_transports__stdio__sse__websocket__memory_.md -------------------------------------------------------------------------------- /docs/MCP Python SDK/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/MCP Python SDK/index.md -------------------------------------------------------------------------------- /docs/NumPy Core/01_ndarray__n_dimensional_array_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/01_ndarray__n_dimensional_array_.md -------------------------------------------------------------------------------- /docs/NumPy Core/02_dtype__data_type_object_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/02_dtype__data_type_object_.md -------------------------------------------------------------------------------- /docs/NumPy Core/03_ufunc__universal_function_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/03_ufunc__universal_function_.md -------------------------------------------------------------------------------- /docs/NumPy Core/04_numeric_types___numerictypes__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/04_numeric_types___numerictypes__.md -------------------------------------------------------------------------------- /docs/NumPy Core/05_array_printing___arrayprint__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/05_array_printing___arrayprint__.md -------------------------------------------------------------------------------- /docs/NumPy Core/06_multiarray_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/06_multiarray_module.md -------------------------------------------------------------------------------- /docs/NumPy Core/07_umath_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/07_umath_module.md -------------------------------------------------------------------------------- /docs/NumPy Core/08___array_function___protocol___overrides___overrides__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/08___array_function___protocol___overrides___overrides__.md -------------------------------------------------------------------------------- /docs/NumPy Core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/NumPy Core/index.md -------------------------------------------------------------------------------- /docs/OpenManus/01_llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/01_llm.md -------------------------------------------------------------------------------- /docs/OpenManus/02_message___memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/02_message___memory.md -------------------------------------------------------------------------------- /docs/OpenManus/03_baseagent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/03_baseagent.md -------------------------------------------------------------------------------- /docs/OpenManus/04_tool___toolcollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/04_tool___toolcollection.md -------------------------------------------------------------------------------- /docs/OpenManus/05_baseflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/05_baseflow.md -------------------------------------------------------------------------------- /docs/OpenManus/06_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/06_schema.md -------------------------------------------------------------------------------- /docs/OpenManus/07_configuration__config_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/07_configuration__config_.md -------------------------------------------------------------------------------- /docs/OpenManus/08_dockersandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/08_dockersandbox.md -------------------------------------------------------------------------------- /docs/OpenManus/09_mcp__model_context_protocol_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/09_mcp__model_context_protocol_.md -------------------------------------------------------------------------------- /docs/OpenManus/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/OpenManus/index.md -------------------------------------------------------------------------------- /docs/PocketFlow/01_shared_state___shared__dictionary__.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/PocketFlow/01_shared_state___shared__dictionary__.md -------------------------------------------------------------------------------- /docs/PocketFlow/02_node___basenode____node____asyncnode___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/PocketFlow/02_node___basenode____node____asyncnode___.md -------------------------------------------------------------------------------- /docs/PocketFlow/03_actions___transitions_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/PocketFlow/03_actions___transitions_.md -------------------------------------------------------------------------------- /docs/PocketFlow/04_flow___flow____asyncflow___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/PocketFlow/04_flow___flow____asyncflow___.md -------------------------------------------------------------------------------- /docs/PocketFlow/05_asynchronous_processing___asyncnode____asyncflow___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/PocketFlow/05_asynchronous_processing___asyncnode____asyncflow___.md -------------------------------------------------------------------------------- /docs/PocketFlow/06_batch_processing___batchnode____batchflow____asyncparallelbatchnode___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/PocketFlow/06_batch_processing___batchnode____batchflow____asyncparallelbatchnode___.md -------------------------------------------------------------------------------- /docs/PocketFlow/07_a2a__agent_to_agent__communication_framework_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/PocketFlow/07_a2a__agent_to_agent__communication_framework_.md -------------------------------------------------------------------------------- /docs/PocketFlow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/PocketFlow/index.md -------------------------------------------------------------------------------- /docs/Pydantic Core/01_basemodel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Pydantic Core/01_basemodel.md -------------------------------------------------------------------------------- /docs/Pydantic Core/02_fields__fieldinfo___field_function_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Pydantic Core/02_fields__fieldinfo___field_function_.md -------------------------------------------------------------------------------- /docs/Pydantic Core/03_configuration__configdict___configwrapper_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Pydantic Core/03_configuration__configdict___configwrapper_.md -------------------------------------------------------------------------------- /docs/Pydantic Core/04_custom_logic__decorators___annotated_helpers_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Pydantic Core/04_custom_logic__decorators___annotated_helpers_.md -------------------------------------------------------------------------------- /docs/Pydantic Core/05_core_schema___validation_serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Pydantic Core/05_core_schema___validation_serialization.md -------------------------------------------------------------------------------- /docs/Pydantic Core/06_typeadapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Pydantic Core/06_typeadapter.md -------------------------------------------------------------------------------- /docs/Pydantic Core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Pydantic Core/index.md -------------------------------------------------------------------------------- /docs/Requests/01_functional_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/01_functional_api.md -------------------------------------------------------------------------------- /docs/Requests/02_request___response_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/02_request___response_models.md -------------------------------------------------------------------------------- /docs/Requests/03_session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/03_session.md -------------------------------------------------------------------------------- /docs/Requests/04_cookie_jar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/04_cookie_jar.md -------------------------------------------------------------------------------- /docs/Requests/05_authentication_handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/05_authentication_handlers.md -------------------------------------------------------------------------------- /docs/Requests/06_exception_hierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/06_exception_hierarchy.md -------------------------------------------------------------------------------- /docs/Requests/07_transport_adapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/07_transport_adapters.md -------------------------------------------------------------------------------- /docs/Requests/08_hook_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/08_hook_system.md -------------------------------------------------------------------------------- /docs/Requests/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/Requests/index.md -------------------------------------------------------------------------------- /docs/SmolaAgents/01_multistepagent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/01_multistepagent.md -------------------------------------------------------------------------------- /docs/SmolaAgents/02_model_interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/02_model_interface.md -------------------------------------------------------------------------------- /docs/SmolaAgents/03_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/03_tool.md -------------------------------------------------------------------------------- /docs/SmolaAgents/04_agentmemory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/04_agentmemory.md -------------------------------------------------------------------------------- /docs/SmolaAgents/05_prompttemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/05_prompttemplates.md -------------------------------------------------------------------------------- /docs/SmolaAgents/06_pythonexecutor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/06_pythonexecutor.md -------------------------------------------------------------------------------- /docs/SmolaAgents/07_agenttype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/07_agenttype.md -------------------------------------------------------------------------------- /docs/SmolaAgents/08_agentlogger___monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/08_agentlogger___monitor.md -------------------------------------------------------------------------------- /docs/SmolaAgents/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/SmolaAgents/index.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/design.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/docs/index.md -------------------------------------------------------------------------------- /flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/flow.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/main.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/call_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/utils/call_llm.py -------------------------------------------------------------------------------- /utils/crawl_github_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/utils/crawl_github_files.py -------------------------------------------------------------------------------- /utils/crawl_local_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/HEAD/utils/crawl_local_files.py --------------------------------------------------------------------------------