LICENSE
README.md
setup.py
agentverse_ai.egg-info/PKG-INFO
agentverse_ai.egg-info/SOURCES.txt
agentverse_ai.egg-info/dependency_links.txt
agentverse_ai.egg-info/requires.txt
agentverse_ai.egg-info/top_level.txt
cookbook/__init__.py
cookbook/agent_concepts/__init__.py
cookbook/agent_concepts/async/__init__.py
cookbook/agent_concepts/async/basic.py
cookbook/agent_concepts/async/basic_stream.py
cookbook/agent_concepts/async/data_analyst.py
cookbook/agent_concepts/async/delay.py
cookbook/agent_concepts/async/gather_agents.py
cookbook/agent_concepts/async/reasoning.py
cookbook/agent_concepts/async/structured_output.py
cookbook/agent_concepts/async/tool_use.py
cookbook/agent_concepts/knowledge/__init__.py
cookbook/agent_concepts/knowledge/arxiv_kb.py
cookbook/agent_concepts/knowledge/combined_kb.py
cookbook/agent_concepts/knowledge/csv_kb.py
cookbook/agent_concepts/knowledge/csv_url_kb.py
cookbook/agent_concepts/knowledge/doc_kb.py
cookbook/agent_concepts/knowledge/docx_kb.py
cookbook/agent_concepts/knowledge/json_kb.py
cookbook/agent_concepts/knowledge/langchain_kb.py
cookbook/agent_concepts/knowledge/llamaindex_kb.py
cookbook/agent_concepts/knowledge/pdf_kb.py
cookbook/agent_concepts/knowledge/pdf_url_kb.py
cookbook/agent_concepts/knowledge/s3_pdf_kb.py
cookbook/agent_concepts/knowledge/s3_text_kb.py
cookbook/agent_concepts/knowledge/text_kb.py
cookbook/agent_concepts/knowledge/website_kb.py
cookbook/agent_concepts/knowledge/wikipedia_kb.py
cookbook/agent_concepts/knowledge/youtube_kb.py
cookbook/agent_concepts/knowledge/chunking/__init__.py
cookbook/agent_concepts/knowledge/chunking/agentic_chunking.py
cookbook/agent_concepts/knowledge/chunking/default.py
cookbook/agent_concepts/knowledge/chunking/document_chunking.py
cookbook/agent_concepts/knowledge/chunking/fixed_size_chunking.py
cookbook/agent_concepts/knowledge/chunking/recursive_chunking.py
cookbook/agent_concepts/knowledge/chunking/semantic_chunking.py
cookbook/agent_concepts/knowledge/custom/__init__.py
cookbook/agent_concepts/knowledge/custom/retriever.py
cookbook/agent_concepts/knowledge/embedders/__init__.py
cookbook/agent_concepts/knowledge/embedders/azure_embedder.py
cookbook/agent_concepts/knowledge/embedders/cohere_embedder.py
cookbook/agent_concepts/knowledge/embedders/fireworks_embedder.py
cookbook/agent_concepts/knowledge/embedders/gemini_embedder.py
cookbook/agent_concepts/knowledge/embedders/huggingface_embedder.py
cookbook/agent_concepts/knowledge/embedders/mistral_embedder.py
cookbook/agent_concepts/knowledge/embedders/ollama_embedder.py
cookbook/agent_concepts/knowledge/embedders/openai_embedder.py
cookbook/agent_concepts/knowledge/embedders/qdrant_fastembed.py
cookbook/agent_concepts/knowledge/embedders/sentence_transformer_embedder.py
cookbook/agent_concepts/knowledge/embedders/together_embedder.py
cookbook/agent_concepts/knowledge/embedders/voyageai_embedder.py
cookbook/agent_concepts/knowledge/readers/__init__.py
cookbook/agent_concepts/knowledge/readers/firecrawl_reader.py
cookbook/agent_concepts/knowledge/readers/json_reader.py
cookbook/agent_concepts/knowledge/readers/url_reader.py
cookbook/agent_concepts/knowledge/readers/web_reader.py
cookbook/agent_concepts/knowledge/vector_dbs/__init__.py
cookbook/agent_concepts/knowledge/vector_dbs/cassandra_db.py
cookbook/agent_concepts/knowledge/vector_dbs/chroma_db.py
cookbook/agent_concepts/knowledge/vector_dbs/clickhouse.py
cookbook/agent_concepts/knowledge/vector_dbs/milvus.py
cookbook/agent_concepts/knowledge/vector_dbs/mongodb.py
cookbook/agent_concepts/knowledge/vector_dbs/pg_vector.py
cookbook/agent_concepts/knowledge/vector_dbs/pinecone_db.py
cookbook/agent_concepts/knowledge/vector_dbs/qdrant_db.py
cookbook/agent_concepts/knowledge/vector_dbs/singlestore.py
cookbook/agent_concepts/knowledge/vector_dbs/upstash_db.py
cookbook/agent_concepts/knowledge/vector_dbs/weaviate_db.py
cookbook/agent_concepts/knowledge/vector_dbs/lance_db/__init__.py
cookbook/agent_concepts/knowledge/vector_dbs/lance_db/async_lance_db.py
cookbook/agent_concepts/knowledge/vector_dbs/lance_db/lance_db.py
cookbook/agent_concepts/memory/01_builtin_memory.py
cookbook/agent_concepts/memory/02_persistent_memory.py
cookbook/agent_concepts/memory/03_memories_and_summaries.py
cookbook/agent_concepts/memory/04_persistent_memory_postgres.py
cookbook/agent_concepts/memory/05_memories_and_summaries_postgres.py
cookbook/agent_concepts/memory/06_memories_and_summaries_sqlite_async.py
cookbook/agent_concepts/memory/07_persistent_memory_mongodb.py
cookbook/agent_concepts/memory/08_mem0_memory.py
cookbook/agent_concepts/memory/09_using_other_models_for_memory.py
cookbook/agent_concepts/memory/__init__.py
cookbook/agent_concepts/multimodal/__init__.py
cookbook/agent_concepts/multimodal/audio_input_output.py
cookbook/agent_concepts/multimodal/audio_multi_turn.py
cookbook/agent_concepts/multimodal/audio_sentiment_analysis.py
cookbook/agent_concepts/multimodal/audio_streaming.py
cookbook/agent_concepts/multimodal/audio_to_text.py
cookbook/agent_concepts/multimodal/generate_image_with_intermediate_steps.py
cookbook/agent_concepts/multimodal/generate_video_using_models_lab.py
cookbook/agent_concepts/multimodal/generate_video_using_replicate.py
cookbook/agent_concepts/multimodal/image_to_audio.py
cookbook/agent_concepts/multimodal/image_to_image_agent.py
cookbook/agent_concepts/multimodal/image_to_text.py
cookbook/agent_concepts/multimodal/video_caption_agent.py
cookbook/agent_concepts/multimodal/video_to_shorts.py
cookbook/agent_concepts/other/__init__.py
cookbook/agent_concepts/other/agent_metrics.py
cookbook/agent_concepts/other/input_as_dict.py
cookbook/agent_concepts/other/input_as_list.py
cookbook/agent_concepts/other/input_as_message.py
cookbook/agent_concepts/other/input_high_fidelity.py
cookbook/agent_concepts/other/instructions.py
cookbook/agent_concepts/other/instructions_via_function.py
cookbook/agent_concepts/other/intermediate_steps.py
cookbook/agent_concepts/other/pre_and_post_hooks.py
cookbook/agent_concepts/other/response_as_variable.py
cookbook/agent_concepts/other/stream_tool_call_responses.py
cookbook/agent_concepts/rag/__init__.py
cookbook/agent_concepts/rag/agentic_rag_agent_ui.py
cookbook/agent_concepts/rag/agentic_rag_lancedb.py
cookbook/agent_concepts/rag/agentic_rag_pgvector.py
cookbook/agent_concepts/rag/agentic_rag_with_reranking.py
cookbook/agent_concepts/rag/rag_with_lance_db_and_sqlite.py
cookbook/agent_concepts/rag/traditional_rag_lancedb.py
cookbook/agent_concepts/rag/traditional_rag_pgvector.py
cookbook/agent_concepts/reasoning/__init__.py
cookbook/agent_concepts/reasoning/deepinfra/9_11_or_9_9.py
cookbook/agent_concepts/reasoning/deepinfra/__init__.py
cookbook/agent_concepts/reasoning/deepseek/9_11_or_9_9.py
cookbook/agent_concepts/reasoning/deepseek/__init__.py
cookbook/agent_concepts/reasoning/deepseek/analyse_treaty_of_versailles.py
cookbook/agent_concepts/reasoning/deepseek/ethical_dilemma.py
cookbook/agent_concepts/reasoning/deepseek/fibonacci.py
cookbook/agent_concepts/reasoning/deepseek/finance_agent.py
cookbook/agent_concepts/reasoning/deepseek/life_in_500000_years.py
cookbook/agent_concepts/reasoning/deepseek/logical_puzzle.py
cookbook/agent_concepts/reasoning/deepseek/mathematical_proof.py
cookbook/agent_concepts/reasoning/deepseek/plan_itenerary.py
cookbook/agent_concepts/reasoning/deepseek/python_101_curriculum.py
cookbook/agent_concepts/reasoning/deepseek/scientific_research.py
cookbook/agent_concepts/reasoning/deepseek/ship_of_theseus.py
cookbook/agent_concepts/reasoning/deepseek/strawberry.py
cookbook/agent_concepts/reasoning/deepseek/trolley_problem.py
cookbook/agent_concepts/reasoning/default/__init__.py
cookbook/agent_concepts/reasoning/default/analyse_treaty_of_versailles.py
cookbook/agent_concepts/reasoning/default/ethical_dilemma.py
cookbook/agent_concepts/reasoning/default/fibonacci.py
cookbook/agent_concepts/reasoning/default/finance_agent.py
cookbook/agent_concepts/reasoning/default/is_9_11_bigger_than_9_9.py
cookbook/agent_concepts/reasoning/default/life_in_500000_years.py
cookbook/agent_concepts/reasoning/default/logical_puzzle.py
cookbook/agent_concepts/reasoning/default/mathematical_proof.py
cookbook/agent_concepts/reasoning/default/plan_itenerary.py
cookbook/agent_concepts/reasoning/default/python_101_curriculum.py
cookbook/agent_concepts/reasoning/default/scientific_research.py
cookbook/agent_concepts/reasoning/default/ship_of_theseus.py
cookbook/agent_concepts/reasoning/default/strawberry.py
cookbook/agent_concepts/reasoning/default/trolley_problem.py
cookbook/agent_concepts/reasoning/groq/9_11_or_9_9.py
cookbook/agent_concepts/reasoning/groq/__init__.py
cookbook/agent_concepts/reasoning/openai/9_11_or_9_9.py
cookbook/agent_concepts/reasoning/openai/__init__.py
cookbook/agent_concepts/teams/__init__.py
cookbook/agent_concepts/teams/hackernews_team.py
cookbook/agent_concepts/teams/news_agency_team.py
cookbook/agent_concepts/teams/respond_directly.py
cookbook/examples/__init__.py
cookbook/examples/agents/__init__.py
cookbook/examples/agents/agno_assist.py
cookbook/examples/agents/agno_support_agent.py
cookbook/examples/agents/book_recommendation.py
cookbook/examples/agents/deep_knowledge.py
cookbook/examples/agents/finance_agent.py
cookbook/examples/agents/legal_consultant.py
cookbook/examples/agents/media_trend_analysis_agent.py
cookbook/examples/agents/movie_recommedation.py
cookbook/examples/agents/readme_generator.py
cookbook/examples/agents/recipe_creator.py
cookbook/examples/agents/research_agent.py
cookbook/examples/agents/research_agent_exa.py
cookbook/examples/agents/shopping_partner.py
cookbook/examples/agents/study_partner.py
cookbook/examples/agents/travel_planner.py
cookbook/examples/agents/youtube_agent.py
cookbook/examples/apps/__init__.py
cookbook/examples/apps/agentic_rag/__init__.py
cookbook/examples/apps/agentic_rag/agentic_rag.py
cookbook/examples/apps/agentic_rag/app.py
cookbook/examples/apps/agentic_rag/utils.py
cookbook/examples/apps/answer_engine/__init__.py
cookbook/examples/apps/answer_engine/agents.py
cookbook/examples/apps/answer_engine/app.py
cookbook/examples/apps/answer_engine/prompts.py
cookbook/examples/apps/answer_engine/test.py
cookbook/examples/apps/answer_engine/utils.py
cookbook/examples/apps/chess_team/__init__.py
cookbook/examples/apps/chess_team/agents.py
cookbook/examples/apps/chess_team/app.py
cookbook/examples/apps/chess_team/utils.py
cookbook/examples/apps/game_generator/__init__.py
cookbook/examples/apps/game_generator/app.py
cookbook/examples/apps/game_generator/game_generator.py
cookbook/examples/apps/geobuddy/__init__.py
cookbook/examples/apps/geobuddy/app.py
cookbook/examples/apps/geobuddy/geography_buddy.py
cookbook/examples/apps/llm_os/__init__.py
cookbook/examples/apps/llm_os/app.py
cookbook/examples/apps/llm_os/os_agent.py
cookbook/examples/apps/mcp_agent/__init__.py
cookbook/examples/apps/mcp_agent/agents.py
cookbook/examples/apps/mcp_agent/app.py
cookbook/examples/apps/mcp_agent/mcp_client.py
cookbook/examples/apps/mcp_agent/utils.py
cookbook/examples/apps/medical_imaging/__init__.py
cookbook/examples/apps/medical_imaging/app.py
cookbook/examples/apps/medical_imaging/medical_agent.py
cookbook/examples/apps/paperpal/__init__.py
cookbook/examples/apps/paperpal/app.py
cookbook/examples/apps/paperpal/technical_writer.py
cookbook/examples/apps/parallel_world_builder/__init__.py
cookbook/examples/apps/parallel_world_builder/agents.py
cookbook/examples/apps/parallel_world_builder/app.py
cookbook/examples/apps/parallel_world_builder/utils.py
cookbook/examples/apps/podcast_generator/__init__.py
cookbook/examples/apps/podcast_generator/agents.py
cookbook/examples/apps/podcast_generator/app.py
cookbook/examples/apps/sql_agent/__init__.py
cookbook/examples/apps/sql_agent/agents.py
cookbook/examples/apps/sql_agent/app.py
cookbook/examples/apps/sql_agent/load_f1_data.py
cookbook/examples/apps/sql_agent/load_knowledge.py
cookbook/examples/apps/sql_agent/utils.py
cookbook/examples/apps/tic_tac_toe/__init__.py
cookbook/examples/apps/tic_tac_toe/agents.py
cookbook/examples/apps/tic_tac_toe/app.py
cookbook/examples/apps/tic_tac_toe/utils.py
cookbook/getting_started/01_basic_agent.py
cookbook/getting_started/02_agent_with_tools.py
cookbook/getting_started/03_agent_with_knowledge.py
cookbook/getting_started/04_agent_with_storage.py
cookbook/getting_started/05_agent_team.py
cookbook/getting_started/06_structured_output.py
cookbook/getting_started/07_write_your_own_tool.py
cookbook/getting_started/08_research_agent_exa.py
cookbook/getting_started/09_research_workflow.py
cookbook/getting_started/10_image_agent.py
cookbook/getting_started/11_generate_image.py
cookbook/getting_started/12_generate_video.py
cookbook/getting_started/13_audio_input_output.py
cookbook/getting_started/14_agent_state.py
cookbook/getting_started/15_agent_context.py
cookbook/getting_started/16_agent_session.py
cookbook/getting_started/17_user_memories_and_summaries.py
cookbook/getting_started/18_retry_function_call.py
cookbook/getting_started/19_human_in_the_loop.py
cookbook/getting_started/__init__.py
cookbook/getting_started/readme_examples.py
cookbook/hackathon/__init__.py
cookbook/hackathon/data/__init__.py
cookbook/hackathon/examples/__init__.py
cookbook/hackathon/examples/agent_with_knowledge.py
cookbook/hackathon/examples/agent_with_tools.py
cookbook/hackathon/examples/research_agent.py
cookbook/hackathon/examples/simple_text_agent.py
cookbook/hackathon/examples/structured_output.py
cookbook/hackathon/examples/youtube_agent.py
cookbook/hackathon/models/__init__.py
cookbook/hackathon/models/anthropic/__init__.py
cookbook/hackathon/models/anthropic/image_input_file.py
cookbook/hackathon/models/anthropic/image_input_url.py
cookbook/hackathon/models/gemini/__init__.py
cookbook/hackathon/models/gemini/audio_input_file.py
cookbook/hackathon/models/gemini/audio_input_url.py
cookbook/hackathon/models/gemini/image_input_file.py
cookbook/hackathon/models/gemini/image_input_url.py
cookbook/hackathon/models/gemini/video_input_file.py
cookbook/hackathon/models/groq/__init__.py
cookbook/hackathon/models/groq/image_input_file.py
cookbook/hackathon/models/groq/image_input_url.py
cookbook/hackathon/models/mistral/__init__.py
cookbook/hackathon/models/mistral/image_input_file.py
cookbook/hackathon/models/mistral/image_input_url.py
cookbook/hackathon/models/ollama/__init__.py
cookbook/hackathon/models/ollama/image_input_file.py
cookbook/hackathon/models/ollama/image_input_url.py
cookbook/hackathon/models/openai/__init__.py
cookbook/hackathon/models/openai/audio_input_file.py
cookbook/hackathon/models/openai/audio_input_url.py
cookbook/hackathon/models/openai/audio_output.py
cookbook/hackathon/models/openai/image_input_file.py
cookbook/hackathon/models/openai/image_input_url.py
cookbook/hackathon/models/openai/image_output.py
cookbook/hackathon/multimodal_examples/__init__.py
cookbook/hackathon/multimodal_examples/audio_input.py
cookbook/hackathon/multimodal_examples/audio_input_output.py
cookbook/hackathon/multimodal_examples/audio_multi_turn.py
cookbook/hackathon/multimodal_examples/audio_podcast_generator.py
cookbook/hackathon/multimodal_examples/audio_sentiment_analysis.py
cookbook/hackathon/multimodal_examples/audio_to_text.py
cookbook/hackathon/multimodal_examples/image_generate.py
cookbook/hackathon/multimodal_examples/image_generate_with_intermediate_steps.py
cookbook/hackathon/multimodal_examples/image_gif_search.py
cookbook/hackathon/multimodal_examples/image_input_with_tools.py
cookbook/hackathon/multimodal_examples/image_to_audio.py
cookbook/hackathon/multimodal_examples/image_to_image.py
cookbook/hackathon/multimodal_examples/image_to_structured_output.py
cookbook/hackathon/multimodal_examples/image_transcription.py
cookbook/hackathon/multimodal_examples/video_caption.py
cookbook/hackathon/multimodal_examples/video_generate_using_models_lab.py
cookbook/hackathon/multimodal_examples/video_generate_using_replicate.py
cookbook/hackathon/multimodal_examples/video_input.py
cookbook/hackathon/multimodal_examples/video_to_shorts.py
cookbook/hackathon/playground/__init__.py
cookbook/hackathon/playground/blog_to_podcast.py
cookbook/hackathon/playground/demo.py
cookbook/hackathon/playground/multimodal_agents.py
cookbook/models/__init__.py
cookbook/models/anthropic/__init__.py
cookbook/models/anthropic/async_basic.py
cookbook/models/anthropic/async_basic_stream.py
cookbook/models/anthropic/async_tool_use.py
cookbook/models/anthropic/basic.py
cookbook/models/anthropic/basic_stream.py
cookbook/models/anthropic/image_input_url.py
cookbook/models/anthropic/knowledge.py
cookbook/models/anthropic/memory.py
cookbook/models/anthropic/pdf_input_local.py
cookbook/models/anthropic/pdf_input_url.py
cookbook/models/anthropic/storage.py
cookbook/models/anthropic/structured_output.py
cookbook/models/anthropic/thinking.py
cookbook/models/anthropic/thinking_stream.py
cookbook/models/anthropic/tool_use.py
cookbook/models/anthropic/tool_use_stream.py
cookbook/models/aws/__init__.py
cookbook/models/aws/bedrock/__init__.py
cookbook/models/aws/bedrock/basic.py
cookbook/models/aws/bedrock/basic_stream.py
cookbook/models/aws/bedrock/image_agent_bytes.py
cookbook/models/aws/bedrock/structured_output.py
cookbook/models/aws/bedrock/tool_use.py
cookbook/models/aws/bedrock/tool_use_stream.py
cookbook/models/aws/claude/__init__.py
cookbook/models/aws/claude/async_basic.py
cookbook/models/aws/claude/async_basic_stream.py
cookbook/models/aws/claude/async_tool_use.py
cookbook/models/aws/claude/basic.py
cookbook/models/aws/claude/basic_stream.py
cookbook/models/aws/claude/image_agent.py
cookbook/models/aws/claude/knowledge.py
cookbook/models/aws/claude/storage.py
cookbook/models/aws/claude/structured_output.py
cookbook/models/aws/claude/tool_use.py
cookbook/models/azure/__init__.py
cookbook/models/azure/ai_foundry/__init__.py
cookbook/models/azure/ai_foundry/async_basic.py
cookbook/models/azure/ai_foundry/async_basic_stream.py
cookbook/models/azure/ai_foundry/async_tool_use.py
cookbook/models/azure/ai_foundry/basic.py
cookbook/models/azure/ai_foundry/basic_stream.py
cookbook/models/azure/ai_foundry/demo_cohere.py
cookbook/models/azure/ai_foundry/demo_mistral.py
cookbook/models/azure/ai_foundry/image_agent.py
cookbook/models/azure/ai_foundry/image_agent_bytes.py
cookbook/models/azure/ai_foundry/knowledge.py
cookbook/models/azure/ai_foundry/storage.py
cookbook/models/azure/ai_foundry/structured_output.py
cookbook/models/azure/ai_foundry/tool_use.py
cookbook/models/azure/openai/__init__.py
cookbook/models/azure/openai/async_basic.py
cookbook/models/azure/openai/async_basic_stream.py
cookbook/models/azure/openai/basic.py
cookbook/models/azure/openai/basic_stream.py
cookbook/models/azure/openai/knowledge.py
cookbook/models/azure/openai/storage.py
cookbook/models/azure/openai/structured_output.py
cookbook/models/azure/openai/tool_use.py
cookbook/models/cohere/__init__.py
cookbook/models/cohere/async_basic.py
cookbook/models/cohere/async_basic_stream.py
cookbook/models/cohere/async_structured_output.py
cookbook/models/cohere/async_tool_use.py
cookbook/models/cohere/basic.py
cookbook/models/cohere/basic_stream.py
cookbook/models/cohere/image_agent.py
cookbook/models/cohere/image_agent_bytes.py
cookbook/models/cohere/image_agent_local_file.py
cookbook/models/cohere/knowledge.py
cookbook/models/cohere/memory.py
cookbook/models/cohere/storage.py
cookbook/models/cohere/structured_output.py
cookbook/models/cohere/tool_use.py
cookbook/models/deepseek/__init__.py
cookbook/models/deepseek/async_basic.py
cookbook/models/deepseek/async_basic_streaming.py
cookbook/models/deepseek/async_tool_use.py
cookbook/models/deepseek/basic.py
cookbook/models/deepseek/basic_stream.py
cookbook/models/deepseek/structured_output.py
cookbook/models/deepseek/tool_use.py
cookbook/models/fireworks/__init__.py
cookbook/models/fireworks/async_basic.py
cookbook/models/fireworks/async_basic_stream.py
cookbook/models/fireworks/async_tool_use.py
cookbook/models/fireworks/basic.py
cookbook/models/fireworks/basic_stream.py
cookbook/models/fireworks/structured_output.py
cookbook/models/fireworks/tool_use.py
cookbook/models/google/__init__.py
cookbook/models/google/gemini/__init__.py
cookbook/models/google/gemini/async_basic.py
cookbook/models/google/gemini/async_basic_stream.py
cookbook/models/google/gemini/async_tool_use.py
cookbook/models/google/gemini/audio_input_bytes_content.py
cookbook/models/google/gemini/audio_input_file_upload.py
cookbook/models/google/gemini/audio_input_local_file_upload.py
cookbook/models/google/gemini/basic.py
cookbook/models/google/gemini/basic_stream.py
cookbook/models/google/gemini/demo_llama_via_vertex_ai.py
cookbook/models/google/gemini/flash_thinking_agent.py
cookbook/models/google/gemini/grounding.py
cookbook/models/google/gemini/image_input.py
cookbook/models/google/gemini/image_input_file_upload.py
cookbook/models/google/gemini/knowledge.py
cookbook/models/google/gemini/pdf_input_local.py
cookbook/models/google/gemini/pdf_input_url.py
cookbook/models/google/gemini/search.py
cookbook/models/google/gemini/storage.py
cookbook/models/google/gemini/storage_and_memory.py
cookbook/models/google/gemini/structured_output.py
cookbook/models/google/gemini/tool_use.py
cookbook/models/google/gemini/tool_use_stream.py
cookbook/models/google/gemini/video_input_bytes_content.py
cookbook/models/google/gemini/video_input_file_upload.py
cookbook/models/google/gemini/video_input_local_file_upload.py
cookbook/models/groq/__init__.py
cookbook/models/groq/agent_team.py
cookbook/models/groq/async_basic.py
cookbook/models/groq/async_basic_stream.py
cookbook/models/groq/async_tool_use.py
cookbook/models/groq/basic.py
cookbook/models/groq/basic_stream.py
cookbook/models/groq/deep_knowledge.py
cookbook/models/groq/image_agent.py
cookbook/models/groq/knowledge.py
cookbook/models/groq/metrics.py
cookbook/models/groq/reasoning_agent.py
cookbook/models/groq/research_agent_exa.py
cookbook/models/groq/storage.py
cookbook/models/groq/structured_output.py
cookbook/models/groq/tool_use.py
cookbook/models/groq/reasoning/__init__.py
cookbook/models/groq/reasoning/basic.py
cookbook/models/groq/reasoning/basic_stream.py
cookbook/models/groq/reasoning/demo_deepseek_qwen.py
cookbook/models/groq/reasoning/demo_qwen_2_5_32B.py
cookbook/models/groq/reasoning/finance_agent.py
cookbook/models/huggingface/__init__.py
cookbook/models/huggingface/async_basic.py
cookbook/models/huggingface/async_basic_stream.py
cookbook/models/huggingface/basic.py
cookbook/models/huggingface/basic_stream.py
cookbook/models/huggingface/llama_essay_writer.py
cookbook/models/huggingface/tool_use.py
cookbook/models/ibm/__init__.py
cookbook/models/ibm/watsonx/__init__.py
cookbook/models/ibm/watsonx/async_basic.py
cookbook/models/ibm/watsonx/async_basic_stream.py
cookbook/models/ibm/watsonx/async_tool_use.py
cookbook/models/ibm/watsonx/basic.py
cookbook/models/ibm/watsonx/basic_stream.py
cookbook/models/ibm/watsonx/image_agent_bytes.py
cookbook/models/ibm/watsonx/knowledge.py
cookbook/models/ibm/watsonx/storage.py
cookbook/models/ibm/watsonx/structured_output.py
cookbook/models/ibm/watsonx/tool_use.py
cookbook/models/litellm/__init__.py
cookbook/models/litellm/async_basic.py
cookbook/models/litellm/async_basic_stream.py
cookbook/models/litellm/async_tool_use.py
cookbook/models/litellm/basic_gpt.py
cookbook/models/litellm/basic_hf.py
cookbook/models/litellm/basic_stream.py
cookbook/models/litellm/knowledge.py
cookbook/models/litellm/memory.py
cookbook/models/litellm/storage.py
cookbook/models/litellm/structured_output.py
cookbook/models/litellm/tool_use.py
cookbook/models/litellm_openai/__init__.py
cookbook/models/litellm_openai/basic.py
cookbook/models/litellm_openai/basic_stream.py
cookbook/models/litellm_openai/tool_use.py
cookbook/models/lmstudio/__init__.py
cookbook/models/lmstudio/basic.py
cookbook/models/lmstudio/basic_stream.py
cookbook/models/lmstudio/image_agent.py
cookbook/models/lmstudio/knowledge.py
cookbook/models/lmstudio/memory.py
cookbook/models/lmstudio/storage.py
cookbook/models/lmstudio/structured_output.py
cookbook/models/lmstudio/tool_use.py
cookbook/models/lmstudio/tool_use_stream.py
cookbook/models/mistral/__init__.py
cookbook/models/mistral/async_basic.py
cookbook/models/mistral/async_basic_stream.py
cookbook/models/mistral/async_structured_output.py
cookbook/models/mistral/async_tool_use.py
cookbook/models/mistral/basic.py
cookbook/models/mistral/basic_stream.py
cookbook/models/mistral/image_bytes_input_agent.py
cookbook/models/mistral/image_compare_agent.py
cookbook/models/mistral/image_file_input_agent.py
cookbook/models/mistral/image_ocr_with_structured_output.py
cookbook/models/mistral/image_transcribe_document_agent.py
cookbook/models/mistral/memory.py
cookbook/models/mistral/mistral_small.py
cookbook/models/mistral/structured_output.py
cookbook/models/mistral/tool_use.py
cookbook/models/nvidia/__init__.py
cookbook/models/nvidia/async_basic.py
cookbook/models/nvidia/async_basic_stream.py
cookbook/models/nvidia/async_tool_use.py
cookbook/models/nvidia/basic.py
cookbook/models/nvidia/basic_stream.py
cookbook/models/nvidia/tool_use.py
cookbook/models/ollama/__init__.py
cookbook/models/ollama/async_basic.py
cookbook/models/ollama/async_basic_stream.py
cookbook/models/ollama/basic.py
cookbook/models/ollama/basic_stream.py
cookbook/models/ollama/demo_deepseek_r1.py
cookbook/models/ollama/demo_gemma.py
cookbook/models/ollama/demo_phi4.py
cookbook/models/ollama/demo_qwen.py
cookbook/models/ollama/image_agent.py
cookbook/models/ollama/knowledge.py
cookbook/models/ollama/memory.py
cookbook/models/ollama/set_client.py
cookbook/models/ollama/storage.py
cookbook/models/ollama/structured_output.py
cookbook/models/ollama/tool_use.py
cookbook/models/ollama/tool_use_stream.py
cookbook/models/ollama_tools/__init__.py
cookbook/models/ollama_tools/async_basic.py
cookbook/models/ollama_tools/async_basic_stream.py
cookbook/models/ollama_tools/async_tool_use_stream.py
cookbook/models/ollama_tools/basic.py
cookbook/models/ollama_tools/basic_stream.py
cookbook/models/ollama_tools/knowledge.py
cookbook/models/ollama_tools/storage.py
cookbook/models/ollama_tools/structured_output.py
cookbook/models/ollama_tools/tool_use.py
cookbook/models/ollama_tools/tool_use_stream.py
cookbook/models/openrouter/__init__.py
cookbook/models/openrouter/async_basic.py
cookbook/models/openrouter/async_basic_stream.py
cookbook/models/openrouter/async_tool_use.py
cookbook/models/openrouter/basic.py
cookbook/models/openrouter/basic_stream.py
cookbook/models/openrouter/structured_output.py
cookbook/models/openrouter/tool_use.py
cookbook/models/perplexity/__init__.py
cookbook/models/perplexity/async_basic.py
cookbook/models/perplexity/async_basic_stream.py
cookbook/models/perplexity/basic.py
cookbook/models/perplexity/basic_stream.py
cookbook/models/perplexity/knowledge.py
cookbook/models/perplexity/memory.py
cookbook/models/perplexity/structured_output.py
cookbook/models/perplexity/web_search.py
cookbook/models/sambanova/__init__.py
cookbook/models/sambanova/async_basic.py
cookbook/models/sambanova/async_basic_stream.py
cookbook/models/sambanova/basic.py
cookbook/models/sambanova/basic_stream.py
cookbook/models/together/__init__.py
cookbook/models/together/async_basic.py
cookbook/models/together/async_basic_stream.py
cookbook/models/together/async_tool_use.py
cookbook/models/together/basic.py
cookbook/models/together/basic_stream.py
cookbook/models/together/image_agent.py
cookbook/models/together/image_agent_bytes.py
cookbook/models/together/image_agent_with_memory.py
cookbook/models/together/structured_output.py
cookbook/models/together/tool_use.py
cookbook/models/xai/__init__.py
cookbook/models/xai/async_basic.py
cookbook/models/xai/async_basic_stream.py
cookbook/models/xai/async_tool_use.py
cookbook/models/xai/basic.py
cookbook/models/xai/basic_stream.py
cookbook/models/xai/image_agent.py
cookbook/models/xai/image_agent_bytes.py
cookbook/models/xai/image_agent_with_memory.py
cookbook/models/xai/structured_output.py
cookbook/models/xai/tool_use.py
cookbook/playground/__init__.py
cookbook/playground/agno_assist.py
cookbook/playground/audio_conversation_agent.py
cookbook/playground/azure_openai_agents.py
cookbook/playground/basic.py
cookbook/playground/blog_to_podcast.py
cookbook/playground/coding_agent.py
cookbook/playground/demo.py
cookbook/playground/gemini_agents.py
cookbook/playground/grok_agents.py
cookbook/playground/groq_agents.py
cookbook/playground/multimodal_agents.py
cookbook/playground/ollama_agents.py
cookbook/playground/upload_files.py
cookbook/storage/__init__.py
cookbook/storage/dynamodb_storage/__init__.py
cookbook/storage/dynamodb_storage/dynamodb_storage_for_agent.py
cookbook/storage/json_storage/__init__.py
cookbook/storage/json_storage/json_storage_for_agent.py
cookbook/storage/json_storage/json_storage_for_workflow.py
cookbook/storage/mongodb_storage/__init__.py
cookbook/storage/mongodb_storage/mongodb_storage_for_agent.py
cookbook/storage/mongodb_storage/mongodb_storage_for_workflow.py
cookbook/storage/postgres_storage/__init__.py
cookbook/storage/postgres_storage/postgres_storage_for_agent.py
cookbook/storage/postgres_storage/postgres_storage_for_workflow.py
cookbook/storage/singlestore_storage/__init__.py
cookbook/storage/singlestore_storage/singlestore_storage_for_agent.py
cookbook/storage/singlestore_storage/singlestore_storage_for_workflow.py
cookbook/storage/sqllite_storage/__init__.py
cookbook/storage/sqllite_storage/sqlite_storage_for_agent.py
cookbook/storage/sqllite_storage/sqlite_storage_for_workflow.py
cookbook/storage/yaml_storage/__init__.py
cookbook/storage/yaml_storage/yaml_storage_for_agent.py
cookbook/storage/yaml_storage/yaml_storage_for_workflow.py
cookbook/tools/__init__.py
cookbook/tools/agentql_tools.py
cookbook/tools/airflow_tools.py
cookbook/tools/apify_tools.py
cookbook/tools/arxiv_tools.py
cookbook/tools/aws_lambda_tools.py
cookbook/tools/baidusearch_tools.py
cookbook/tools/browserbase_tools.py
cookbook/tools/calcom_tools.py
cookbook/tools/calculator_tools.py
cookbook/tools/clickup_tools.py
cookbook/tools/composio_tools.py
cookbook/tools/confluence_tools.py
cookbook/tools/crawl4ai_tools.py
cookbook/tools/csv_tools.py
cookbook/tools/custom_api_tools.py
cookbook/tools/dalle_tools.py
cookbook/tools/desi_vocal_tools.py
cookbook/tools/discord_tools.py
cookbook/tools/duckdb_tools.py
cookbook/tools/duckduckgo_tools.py
cookbook/tools/elevenlabs_tools.py
cookbook/tools/email_tools.py
cookbook/tools/exa_tools.py
cookbook/tools/fal_tools.py
cookbook/tools/file_tools.py
cookbook/tools/firecrawl_tools.py
cookbook/tools/giphy_tools.py
cookbook/tools/github_tools.py
cookbook/tools/gmail_tools.py
cookbook/tools/google_maps_tools.py
cookbook/tools/googlecalendar_tools.py
cookbook/tools/googlesearch_tools.py
cookbook/tools/googlesheets_tools.py
cookbook/tools/hackernews_tools.py
cookbook/tools/jinareader_tools.py
cookbook/tools/jira_tools.py
cookbook/tools/linear_tools.py
cookbook/tools/lumalabs_tools.py
cookbook/tools/mcp_tools.py
cookbook/tools/mlx_transcribe_tools.py
cookbook/tools/models_lab_tools.py
cookbook/tools/moviepy_video_tools.py
cookbook/tools/multiple_tools.py
cookbook/tools/newspaper4k_tools.py
cookbook/tools/newspaper_tools.py
cookbook/tools/openbb_tools.py
cookbook/tools/openweather_tools.py
cookbook/tools/pandas_tools.py
cookbook/tools/postgres_tools.py
cookbook/tools/pubmed_tools.py
cookbook/tools/python_function.py
cookbook/tools/python_function_as_tool.py
cookbook/tools/python_tools.py
cookbook/tools/reddit_tools.py
cookbook/tools/replicate_tools.py
cookbook/tools/resend_tools.py
cookbook/tools/scrapegraph_tools.py
cookbook/tools/searxng_tools.py
cookbook/tools/serpapi_tools.py
cookbook/tools/shell_tools.py
cookbook/tools/slack_tools.py
cookbook/tools/sleep_tools.py
cookbook/tools/spider_tools.py
cookbook/tools/sql_tools.py
cookbook/tools/tavily_tools.py
cookbook/tools/telegram_tools.py
cookbook/tools/todoist_tools.py
cookbook/tools/tool_calls_accesing_agent.py
cookbook/tools/trello_tools.py
cookbook/tools/twilio_tools.py
cookbook/tools/webex_tools.py
cookbook/tools/website_tools.py
cookbook/tools/wikipedia_tools.py
cookbook/tools/x_tools.py
cookbook/tools/yfinance_tools.py
cookbook/tools/youtube_tools.py
cookbook/tools/zendesk_tools.py
cookbook/tools/zoom_tools.py
cookbook/tools/async/__init__.py
cookbook/tools/async/groq-demo.py
cookbook/tools/async/openai-demo.py
cookbook/tools/mcp/__init__.py
cookbook/tools/mcp/filesystem.py
cookbook/tools/mcp/github.py
cookbook/tools/mcp/groq_mcp.py
cookbook/workflows/__init__.py
cookbook/workflows/blog_post_generator.py
cookbook/workflows/employee_recruiter.py
cookbook/workflows/hackernews_reporter.py
cookbook/workflows/investment_report_generator.py
cookbook/workflows/personalized_email_generator.py
cookbook/workflows/reddit_post_generator.py
cookbook/workflows/self_evaluating_content_creator.py
cookbook/workflows/startup_idea_validator.py
cookbook/workflows/workflows_playground.py
cookbook/workflows/content_creator/__init__.py
cookbook/workflows/content_creator/config.py
cookbook/workflows/content_creator/prompts.py
cookbook/workflows/content_creator/scheduler.py
cookbook/workflows/content_creator/workflow.py
cookbook/workflows/product_manager/__init__.py
cookbook/workflows/product_manager/product_manager.py
evals/__init__.py
evals/accuracy/__init__.py
evals/accuracy/openai/__init__.py
evals/accuracy/openai/calculator.py
evals/performance/__init__.py
evals/performance/instantiation.py
evals/performance/instantiation_with_tool.py
evals/performance/simple_response.py
evals/performance/other/__init__.py
evals/performance/other/autogen_instantiation.py
evals/performance/other/crewai_instantiation.py
evals/performance/other/langgraph_instantiation.py
evals/performance/other/openai_agents_instantiation.py
evals/performance/other/pydantic_ai_instantiation.py
evals/performance/other/smolagents_instantiation.py
evals/reliability/__init__.py
evals/reliability/multiple_tool_calls/__init__.py
evals/reliability/single_tool_calls/__init__.py