├── .env.example ├── .github ├── CODEOWNERS └── workflows │ ├── ci.yaml │ ├── pr.yaml │ └── publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── docker-compose.yaml ├── docs ├── img │ └── Dynamiq_Logo_Universal_Github.png └── tutorials │ ├── agents.md │ ├── quickstart.md │ └── rag.md ├── dynamiq ├── __init__.py ├── cache │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── base.py │ │ └── redis.py │ ├── codecs.py │ ├── config.py │ ├── managers │ │ ├── __init__.py │ │ ├── base.py │ │ └── workflow.py │ └── utils.py ├── callbacks │ ├── __init__.py │ ├── base.py │ ├── streaming.py │ └── tracing.py ├── cli │ ├── __init__.py │ ├── client.py │ ├── commands │ │ ├── __init__.py │ │ ├── config.py │ │ ├── context.py │ │ ├── org.py │ │ ├── project.py │ │ ├── resource_profiles.py │ │ ├── service.py │ │ └── utils.py │ └── config.py ├── clients │ ├── __init__.py │ ├── base.py │ └── dynamiq.py ├── components │ ├── __init__.py │ ├── converters │ │ ├── __init__.py │ │ ├── base.py │ │ ├── docx.py │ │ ├── html.py │ │ ├── pptx.py │ │ ├── pypdf.py │ │ ├── text.py │ │ ├── unstructured.py │ │ └── utils.py │ ├── embedders │ │ ├── __init__.py │ │ ├── base.py │ │ ├── bedrock.py │ │ ├── cohere.py │ │ ├── gemini.py │ │ ├── huggingface.py │ │ ├── mistral.py │ │ ├── openai.py │ │ ├── vertexai.py │ │ └── watsonx.py │ ├── retrievers │ │ ├── __init__.py │ │ ├── chroma.py │ │ ├── elasticsearch.py │ │ ├── milvus.py │ │ ├── opensearch.py │ │ ├── pgvector.py │ │ ├── pinecone.py │ │ ├── qdrant.py │ │ ├── utils.py │ │ └── weaviate.py │ ├── serializers.py │ └── splitters │ │ ├── __init__.py │ │ └── document.py ├── connections │ ├── __init__.py │ ├── connections.py │ ├── managers.py │ └── storages.py ├── evaluations │ ├── __init__.py │ ├── base_evaluator.py │ ├── llm_evaluator.py │ ├── metrics │ │ ├── __init__.py │ │ ├── answer_correctness.py │ │ ├── bleu_score.py │ │ ├── context_precision.py │ │ ├── context_recall.py │ │ ├── factual_correctness.py │ │ ├── faithfulness.py │ │ ├── rouge_score.py │ │ └── string_metrics.py │ └── python_evaluator.py ├── executors │ ├── __init__.py │ ├── base.py │ └── pool.py ├── flows │ ├── __init__.py │ ├── base.py │ └── flow.py ├── memory │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dynamiq.py │ │ ├── dynamo_db.py │ │ ├── in_memory.py │ │ ├── pinecone.py │ │ ├── postgresql.py │ │ ├── qdrant.py │ │ ├── sqlite.py │ │ └── weaviate.py │ └── memory.py ├── nodes │ ├── __init__.py │ ├── agents │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── base.py │ │ ├── exceptions.py │ │ ├── orchestrators │ │ │ ├── __init__.py │ │ │ ├── adaptive.py │ │ │ ├── adaptive_manager.py │ │ │ ├── graph.py │ │ │ ├── graph_manager.py │ │ │ ├── graph_state.py │ │ │ ├── linear.py │ │ │ ├── linear_manager.py │ │ │ └── orchestrator.py │ │ └── utils.py │ ├── audio │ │ ├── __init__.py │ │ ├── elevenlabs.py │ │ └── whisper.py │ ├── converters │ │ ├── __init__.py │ │ ├── csv.py │ │ ├── docx.py │ │ ├── html.py │ │ ├── llm_text_extractor.py │ │ ├── pptx.py │ │ ├── pypdf.py │ │ ├── text.py │ │ └── unstructured.py │ ├── dry_run.py │ ├── embedders │ │ ├── __init__.py │ │ ├── base.py │ │ ├── bedrock.py │ │ ├── cohere.py │ │ ├── gemini.py │ │ ├── huggingface.py │ │ ├── mistral.py │ │ ├── openai.py │ │ ├── vertexai.py │ │ └── watsonx.py │ ├── exceptions.py │ ├── llms │ │ ├── __init__.py │ │ ├── ai21.py │ │ ├── anthropic.py │ │ ├── anyscale.py │ │ ├── azureai.py │ │ ├── base.py │ │ ├── bedrock.py │ │ ├── cerebras.py │ │ ├── cohere.py │ │ ├── custom_llm.py │ │ ├── databricks.py │ │ ├── deepinfra.py │ │ ├── deepseek.py │ │ ├── fireworksai.py │ │ ├── gemini.py │ │ ├── groq.py │ │ ├── huggingface.py │ │ ├── mistral.py │ │ ├── nvidia_nim.py │ │ ├── ollama.py │ │ ├── openai.py │ │ ├── perplexity.py │ │ ├── replicate.py │ │ ├── sambanova.py │ │ ├── togetherai.py │ │ ├── vertexai.py │ │ ├── watsonx.py │ │ └── xai.py │ ├── managers.py │ ├── node.py │ ├── operators │ │ ├── __init__.py │ │ └── operators.py │ ├── rankers │ │ ├── __init__.py │ │ ├── cohere.py │ │ ├── llm.py │ │ └── recency.py │ ├── retrievers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── chroma.py │ │ ├── elasticsearch.py │ │ ├── milvus.py │ │ ├── opensearch.py │ │ ├── pgvector.py │ │ ├── pinecone.py │ │ ├── qdrant.py │ │ ├── retriever.py │ │ └── weaviate.py │ ├── splitters │ │ ├── __init__.py │ │ └── document.py │ ├── tools │ │ ├── __init__.py │ │ ├── context_manager.py │ │ ├── e2b_sandbox.py │ │ ├── exa_search.py │ │ ├── file_tools.py │ │ ├── firecrawl.py │ │ ├── function_tool.py │ │ ├── http_api_call.py │ │ ├── human_feedback.py │ │ ├── jina.py │ │ ├── llm_summarizer.py │ │ ├── mcp.py │ │ ├── preprocess_tool.py │ │ ├── python.py │ │ ├── python_code_executor.py │ │ ├── scale_serp.py │ │ ├── sql_executor.py │ │ ├── tavily.py │ │ ├── thinking_tool.py │ │ └── zenrows.py │ ├── types.py │ ├── utils │ │ ├── __init__.py │ │ └── utils.py │ ├── validators │ │ ├── __init__.py │ │ ├── base.py │ │ ├── regex_match.py │ │ ├── valid_choices.py │ │ ├── valid_json.py │ │ └── valid_python.py │ └── writers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── chroma.py │ │ ├── elasticsearch.py │ │ ├── milvus.py │ │ ├── opensearch.py │ │ ├── pgvector.py │ │ ├── pinecone.py │ │ ├── qdrant.py │ │ ├── weaviate.py │ │ └── writer.py ├── prompts │ ├── __init__.py │ └── prompts.py ├── runnables │ ├── __init__.py │ └── base.py ├── serializers │ ├── __init__.py │ ├── dumpers │ │ ├── __init__.py │ │ └── yaml.py │ ├── loaders │ │ ├── __init__.py │ │ └── yaml.py │ └── types.py ├── storages │ ├── __init__.py │ ├── file │ │ ├── __init__.py │ │ ├── base.py │ │ └── in_memory.py │ └── vector │ │ ├── __init__.py │ │ ├── base.py │ │ ├── chroma │ │ ├── __init__.py │ │ └── chroma.py │ │ ├── elasticsearch │ │ ├── __init__.py │ │ ├── elasticsearch.py │ │ └── filters.py │ │ ├── exceptions.py │ │ ├── milvus │ │ ├── __init__.py │ │ ├── filter.py │ │ └── milvus.py │ │ ├── opensearch │ │ ├── __init__.py │ │ ├── filters.py │ │ └── opensearch.py │ │ ├── pgvector │ │ ├── __init__.py │ │ ├── filters.py │ │ └── pgvector.py │ │ ├── pinecone │ │ ├── __init__.py │ │ ├── filters.py │ │ └── pinecone.py │ │ ├── policies.py │ │ ├── qdrant │ │ ├── __init__.py │ │ ├── converters.py │ │ ├── filters.py │ │ └── qdrant.py │ │ ├── utils.py │ │ └── weaviate │ │ ├── __init__.py │ │ ├── filters.py │ │ └── weaviate.py ├── types │ ├── __init__.py │ ├── document.py │ ├── dry_run.py │ ├── feedback.py │ ├── llm_tool.py │ └── streaming.py ├── utils │ ├── __init__.py │ ├── chat.py │ ├── duration.py │ ├── env.py │ ├── feedback.py │ ├── file_types.py │ ├── json_parser.py │ ├── jsonpath.py │ ├── logger.py │ ├── utils.py │ └── workflow_generation │ │ ├── __init__.py │ │ ├── mock_knowledgebase.py │ │ └── node_generation.py └── workflow │ ├── __init__.py │ └── workflow.py ├── examples ├── Makefile ├── __init__.py ├── cli │ └── agent_service │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── main.py │ │ └── requirements.txt ├── components │ ├── agents │ │ ├── agents │ │ │ ├── agent_filesystem_interaction.py │ │ │ ├── agent_multi_tool_workflow.py │ │ │ ├── agent_multi_tool_workflow_streaming.py │ │ │ ├── agent_vector_store_write_pipeline.py │ │ │ ├── agent_vector_store_writer_tool.py │ │ │ ├── agent_wf.py │ │ │ ├── context_management_example.py │ │ │ ├── reflection_agent_wf.py │ │ │ ├── simple_agent_wf.py │ │ │ ├── use_agent_messages.py │ │ │ ├── use_agent_with_agent_tool.py │ │ │ ├── use_agent_with_error_handling.py │ │ │ ├── use_agent_with_http_child.py │ │ │ ├── use_agent_with_parallel_agent_tool.py │ │ │ ├── use_agents_hidden_params.py │ │ │ └── use_agents_vision.py │ │ ├── orchestrators │ │ │ └── graph_orchestrator │ │ │ │ ├── code_assistant.py │ │ │ │ ├── concierge_orchestration.py │ │ │ │ ├── email_writer.py │ │ │ │ ├── graph_orchestrator_wf.yaml │ │ │ │ ├── graph_orchestrator_yaml.py │ │ │ │ └── trip_planner_orchestration.py │ │ └── streaming │ │ │ ├── intermediate_streaming │ │ │ ├── agents │ │ │ │ ├── agent.py │ │ │ │ ├── agents_test.py │ │ │ │ └── app.py │ │ │ ├── graph_orchestrator │ │ │ │ ├── app.py │ │ │ │ └── graph_orchestrator.py │ │ │ └── run.sh │ │ │ ├── react │ │ │ ├── app.py │ │ │ ├── backend.py │ │ │ ├── run.sh │ │ │ └── use_streaming.py │ │ │ ├── reflection │ │ │ ├── app.py │ │ │ ├── backend.py │ │ │ └── run.sh │ │ │ └── simple │ │ │ ├── app.py │ │ │ ├── backend.py │ │ │ └── run.sh │ ├── core │ │ ├── dag │ │ │ ├── __init__.py │ │ │ ├── agent_file_storage.yaml │ │ │ ├── agent_memory_cycle_dag.py │ │ │ ├── agent_memory_dag.py │ │ │ ├── agent_memory_dag.yaml │ │ │ ├── agent_memory_db_dag.py │ │ │ ├── agent_memory_dynamo_db_dag.yaml │ │ │ ├── agent_rag.py │ │ │ ├── agent_rag.yaml │ │ │ ├── agent_with_tool_params.py │ │ │ ├── agent_with_tool_params.yaml │ │ │ ├── agents_as_tools.yaml │ │ │ ├── csv_embedding_flow.py │ │ │ ├── csv_embedding_flow.yaml │ │ │ ├── dag.py │ │ │ ├── dag.yaml │ │ │ ├── dag_llm.yaml │ │ │ ├── dag_llm_structured_output.py │ │ │ ├── dag_llm_structured_output.yaml │ │ │ ├── dag_llm_tools.yaml │ │ │ ├── dag_mcp_server.yaml │ │ │ ├── dag_mcp_tool.yaml │ │ │ ├── dag_yaml.py │ │ │ ├── dag_yaml_llm.py │ │ │ ├── dag_yaml_llm_tools.py │ │ │ ├── dag_yaml_mcp.py │ │ │ ├── run_agents_as_tools_yaml.py │ │ │ ├── simple_dag.py │ │ │ └── yaml_agent_example.py │ │ ├── memory │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── demo_agent_chat_memory_pinecone.py │ │ │ ├── demo_article.py │ │ │ ├── demo_memory.py │ │ │ ├── demo_memory_dynamiq.py │ │ │ ├── demo_memory_dynamo_db.py │ │ │ ├── demo_memory_pinecone.py │ │ │ ├── demo_memory_postgresql.py │ │ │ ├── demo_memory_qdrant.py │ │ │ ├── demo_memory_sqlite.py │ │ │ ├── demo_memory_weaviate.py │ │ │ ├── demo_simple_agent_chat_memory.py │ │ │ └── demo_simple_agent_chat_memory_qdrant.py │ │ ├── tracing │ │ │ ├── __init__.py │ │ │ ├── agentops_auto.py │ │ │ ├── agentops_tracing.py │ │ │ ├── draw.py │ │ │ └── langfuse_tracing.py │ │ └── websocket │ │ │ ├── __init__.py │ │ │ ├── sse │ │ │ ├── __init__.py │ │ │ ├── http_client.py │ │ │ └── http_server_fastapi.py │ │ │ ├── ws_client.py │ │ │ ├── ws_server_fastapi.py │ │ │ └── ws_streamlit │ │ │ ├── README.md │ │ │ ├── example_agent │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ └── server.py │ │ │ ├── example_agent_chat │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ └── server.py │ │ │ ├── example_llm │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ └── server.py │ │ │ └── run.sh │ ├── data │ │ ├── file.docx │ │ ├── file.pdf │ │ ├── file.pptx │ │ ├── file.txt │ │ ├── img.jpeg │ │ ├── sample.html │ │ └── sample_regression_data.csv │ ├── evaluations │ │ ├── llm_evaluator.py │ │ ├── metrics │ │ │ ├── answer_correctness.py │ │ │ ├── bleu_score.py │ │ │ ├── context_precision.py │ │ │ ├── context_recall.py │ │ │ ├── factual_correctness.py │ │ │ ├── faithfulness.py │ │ │ ├── rouge_score.py │ │ │ └── string_metrics.py │ │ ├── python_evaluator.py │ │ └── workflow_eval.py │ ├── helpers │ │ ├── converters │ │ │ ├── csv_converter.py │ │ │ ├── docx_converter.py │ │ │ ├── html_converter.py │ │ │ ├── pptx_converter.py │ │ │ ├── pypdf_converter.py │ │ │ └── txt_converter.py │ │ └── validators │ │ │ └── valid_python.py │ ├── llm │ │ ├── llm_with_files │ │ │ ├── llm_file_example.py │ │ │ └── use_file_tool_example.py │ │ ├── llm_with_vision │ │ │ ├── img_url_example.py │ │ │ ├── node_pdf_extractor.py │ │ │ └── pdf_extractor.py │ │ └── llms │ │ │ ├── custom.py │ │ │ ├── function_calling.py │ │ │ ├── mistral_with_messages.py │ │ │ ├── ollama.py │ │ │ ├── perplexity_citations.py │ │ │ ├── streaming.py │ │ │ ├── structured_output.py │ │ │ └── thinking_streaming.py │ ├── rag │ │ ├── embedders │ │ │ └── embedders_execution.py │ │ ├── rerankers │ │ │ ├── __init__.py │ │ │ └── use_cohere.py │ │ ├── retrievers │ │ │ ├── __init__.py │ │ │ └── score_threshold_demo.py │ │ └── vector_stores │ │ │ ├── README.md │ │ │ ├── dag │ │ │ ├── dag_chroma.yaml │ │ │ ├── dag_elasticsearch.yaml │ │ │ ├── dag_html_pinecone.yaml │ │ │ ├── dag_pgvector.yaml │ │ │ ├── dag_pinecone.yaml │ │ │ ├── dag_qdrant.yaml │ │ │ ├── dag_weaviate.yaml │ │ │ ├── dag_weaviate_custom.yaml │ │ │ ├── dag_weaviate_tenant.yaml │ │ │ └── dag_yaml.py │ │ │ ├── delete_documents │ │ │ └── pinecone_delete_by_file_ids.py │ │ │ ├── dry_run_example.py │ │ │ ├── elasticsearch_flow.py │ │ │ ├── filters │ │ │ ├── filtering_example.py │ │ │ └── filtering_readme.md │ │ │ ├── pinecone_flow.py │ │ │ ├── scrapping_pinecone_flow.py │ │ │ └── utils.py │ └── tools │ │ ├── README.md │ │ ├── custom_tools │ │ ├── calculator_sympy.py │ │ ├── file_reader.py │ │ └── scraper.py │ │ ├── human_in_the_loop │ │ ├── confirmation_email_writer │ │ │ ├── console │ │ │ │ └── console_agent.py │ │ │ └── socket │ │ │ │ ├── client.py │ │ │ │ └── socket_agent.py │ │ ├── streaming_orchestrator │ │ │ ├── client_streaming.py │ │ │ └── server_streaming.py │ │ └── streaming_post_writer │ │ │ ├── client_streaming.html │ │ │ └── server_streaming.py │ │ ├── mcp_server_as_tool │ │ ├── mcp_servers │ │ │ ├── math_server.py │ │ │ └── weather_server.py │ │ └── use_mcp_adapter_tool.py │ │ ├── use_agent.py │ │ ├── use_exa.py │ │ ├── use_firecrawl.py │ │ ├── use_function_tool.py │ │ ├── use_http_api_node.py │ │ ├── use_jina.py │ │ ├── use_python_node.py │ │ ├── use_react_fc.py │ │ ├── use_react_search.py │ │ ├── use_react_with_coding.py │ │ ├── use_serp.py │ │ ├── use_sql.py │ │ └── use_tavily.py ├── llm_setup.py └── use_cases │ ├── agent_file_processing │ ├── agent_file_api.py │ └── file_processor_server.py │ ├── agents_use_cases │ ├── README.md │ ├── agent_coder.py │ ├── agent_deep_scraping.py │ ├── agent_feedback_analyst.py │ ├── agent_financial.py │ ├── agent_house_price_regression.py │ ├── agent_python_tool.py │ ├── agent_searcher.py │ ├── agent_searcher_multi_tool.py │ ├── agent_web_researcher.py │ ├── agent_with_local_llm.py │ ├── agent_with_role_params.py │ ├── agent_with_small_llm.py │ ├── agent_with_thinking_tool.py │ └── data │ │ ├── house_prices.csv │ │ └── product_feedback.csv │ ├── chainlit │ ├── chainlit.md │ ├── main_chainlit_agent.py │ ├── main_chainlit_server.py │ ├── main_chainlit_simple_agent.py │ └── utils.py │ ├── customer_support │ ├── README.md │ ├── bank_api.py │ └── main.py │ ├── data_analyst │ ├── agent.py │ └── streamlit_app.py │ ├── erp_system │ ├── README.md │ ├── agent.py │ ├── app.py │ ├── backend.py │ ├── database_tool.py │ └── run.sh │ ├── financial_assistant │ ├── README.md │ └── main.py │ ├── gpt_researcher │ ├── README.md │ ├── gpt_researcher │ │ ├── __init__.py │ │ ├── conduct_research.py │ │ ├── prompts.py │ │ └── write_report.py │ ├── main_gpt_researcher.py │ ├── main_multi_agents.py │ ├── multi_agents │ │ ├── __init__.py │ │ ├── editor_agent.py │ │ ├── human_agent.py │ │ ├── planner_agent.py │ │ ├── publisher_agent.py │ │ ├── researcher_agent.py │ │ ├── utils.py │ │ └── writer_agent.py │ └── utils.py │ ├── job_posting │ ├── README.md │ ├── agent_job_posting.py │ └── job_example.md │ ├── literature_overview │ ├── README.md │ └── agent_literature_overview.py │ ├── project_manager │ ├── README.md │ ├── agent_pm.py │ ├── app.py │ ├── backend.py │ ├── composio_tool.py │ └── run.sh │ ├── researcher │ ├── README.md │ ├── agent.py │ ├── app.py │ ├── backend.py │ └── run.sh │ ├── search │ ├── README.md │ ├── app.py │ ├── run.sh │ ├── server.py │ └── server_via_dynamiq.py │ ├── smm_manager │ ├── README.md │ ├── data │ │ └── emails.txt │ ├── mailgun_tool.py │ └── main.py │ └── trip_planner │ ├── README.md │ ├── agent_trip_planner.py │ └── prompts.py ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── scripts └── generate_mkdocs.py ├── setup.cfg └── tests ├── __init__.py ├── conftest.py ├── integration ├── __init__.py ├── evaluations │ ├── metrics │ │ ├── test_answer_correctness.py │ │ ├── test_bleu_score.py │ │ ├── test_context_precision.py │ │ ├── test_context_recall.py │ │ ├── test_factual_correctness.py │ │ ├── test_faithfulness.py │ │ ├── test_rouge_score.py │ │ └── test_string_metrics.py │ ├── test_llm_evaluator.py │ └── test_python_evaluator.py ├── flows │ ├── __init__.py │ └── test_flow.py ├── nodes │ ├── __init__.py │ ├── agents │ │ ├── test_agent_input_message.py │ │ ├── test_agent_map_streaming.py │ │ ├── test_agent_methods.py │ │ └── test_agent_structured_python_tool.py │ ├── audio │ │ ├── __init__.py │ │ ├── test_elevenlabs.py │ │ └── test_whisper.py │ ├── callbacks │ │ └── test_callbacks.py │ ├── converters │ │ ├── test_csv.py │ │ ├── test_docx.py │ │ ├── test_html.py │ │ ├── test_pptx.py │ │ ├── test_pypdf.py │ │ ├── test_txt.py │ │ └── test_unstructured.py │ ├── embedders │ │ ├── conftest.py │ │ ├── test_bedrock_embedders.py │ │ ├── test_cohere_embedders.py │ │ ├── test_embedding_tracing.py │ │ ├── test_gemini_embedders.py │ │ ├── test_huggingface_embedders.py │ │ ├── test_mistral_embedders.py │ │ ├── test_openai_embedders.py │ │ ├── test_vertexai_embedders.py │ │ └── test_watsonx_embedders.py │ ├── llms │ │ ├── __init__.py │ │ ├── test_ai21.py │ │ ├── test_anthropic.py │ │ ├── test_anyscale.py │ │ ├── test_azure.py │ │ ├── test_bedrock.py │ │ ├── test_cerebras.py │ │ ├── test_customllm.py │ │ ├── test_databricks.py │ │ ├── test_deepinfra.py │ │ ├── test_deepseek.py │ │ ├── test_fireworksai.py │ │ ├── test_gemini.py │ │ ├── test_groq.py │ │ ├── test_huggingface.py │ │ ├── test_mistral.py │ │ ├── test_nvidia_nim.py │ │ ├── test_ollama.py │ │ ├── test_openai.py │ │ ├── test_perplexity.py │ │ ├── test_replicate.py │ │ ├── test_together.py │ │ ├── test_vertexai.py │ │ ├── test_watsonx.py │ │ └── test_xai.py │ ├── operators │ │ ├── __init__.py │ │ ├── test_choice.py │ │ ├── test_map.py │ │ └── test_map_react_streaming.py │ ├── orchestrators │ │ └── test_graph_orchestrators.py │ ├── rerankers │ │ └── test_cohere.py │ ├── retrievers │ │ ├── test_milvus_retriever_flow.py │ │ └── test_qdrant_retriever_flow.py │ ├── test_caching.py │ ├── test_streaming.py │ ├── tools │ │ ├── __init__.py │ │ ├── test_exa.py │ │ ├── test_firecrawl.py │ │ ├── test_http_api_call.py │ │ ├── test_jina.py │ │ ├── test_mcp_tool.py │ │ ├── test_python.py │ │ ├── test_serp.py │ │ ├── test_sql_executor.py │ │ └── test_tavily.py │ ├── validators │ │ ├── __init__.py │ │ ├── test_regex_match.py │ │ ├── test_valid_choices.py │ │ ├── test_valid_json.py │ │ └── test_valid_python.py │ └── writers │ │ ├── test_milvus_writer_flow.py │ │ └── test_qdrant_writer_flow.py └── workflows │ ├── __init__.py │ └── test_serialization.py ├── integration_with_creds ├── __init__.py ├── agents │ ├── __init__.py │ ├── test_agent_escape_variables.py │ ├── test_agent_images.py │ ├── test_agent_input.py │ ├── test_agent_llms.py │ ├── test_agent_memory.py │ ├── test_agent_python_tool.py │ ├── test_agent_streaming.py │ └── test_agents_as_tools_parallel.py ├── memory │ ├── __init__.py │ └── test_memory_retrieval.py └── test_rag_yaml.py └── unit ├── components ├── evaluators │ └── test_llm_evaluator_unit.py ├── retrievers │ ├── test_chroma_document_retriever.py │ ├── test_elasticsearch_document_retriever.py │ ├── test_milvus_document_retriever.py │ ├── test_pgvector_document_retriever.py │ ├── test_pinecone_document_retriever.py │ ├── test_qdrant_document_retriever.py │ └── test_weaviate_document_retriever.py └── test_embedder_truncation.py ├── connections ├── test_connections.py └── test_managers.py ├── nodes ├── prompts │ └── test_prompts.py ├── retrievers │ ├── test_chroma_retriever.py │ ├── test_elasticsearch_retriever.py │ ├── test_milvus_retriever.py │ ├── test_pgvector_retriever.py │ ├── test_pinecone_retriever.py │ ├── test_qdrant_retriever.py │ ├── test_weaviate_retriever.py │ └── test_weaviate_tenant_retriever.py ├── schema_generation │ └── test_schemas.py ├── test_connection_management.py ├── test_node.py ├── tools │ ├── test_file_tools.py │ ├── test_python_code_executor.py │ └── test_python_enhanced_outputs.py └── writers │ ├── test_elasticsearch_writer.py │ ├── test_milvus_writer.py │ ├── test_pgvector_writer.py │ ├── test_qdrant_writer.py │ └── test_weaviate_writer.py ├── storages ├── test_in_memory_file_storage.py └── vector │ ├── elasticsearch │ └── test_elasticsearch.py │ ├── milvus │ ├── test_milvus_filters.py │ └── test_milvus_storage.py │ ├── pinecone │ └── test_pinecone.py │ ├── qdrant │ ├── test_converters.py │ ├── test_filters.py │ └── test_qdrant_storage.py │ ├── test_base.py │ ├── test_utils.py │ └── weaviate │ ├── test_weaviate.py │ └── test_weaviate_tenant.py └── utils ├── test_json_parser.py └── test_text_truncation.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/img/Dynamiq_Logo_Universal_Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/docs/img/Dynamiq_Logo_Universal_Github.png -------------------------------------------------------------------------------- /docs/tutorials/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/docs/tutorials/agents.md -------------------------------------------------------------------------------- /docs/tutorials/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/docs/tutorials/quickstart.md -------------------------------------------------------------------------------- /docs/tutorials/rag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/docs/tutorials/rag.md -------------------------------------------------------------------------------- /dynamiq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/__init__.py -------------------------------------------------------------------------------- /dynamiq/cache/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import * 2 | -------------------------------------------------------------------------------- /dynamiq/cache/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/backends/__init__.py -------------------------------------------------------------------------------- /dynamiq/cache/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/backends/base.py -------------------------------------------------------------------------------- /dynamiq/cache/backends/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/backends/redis.py -------------------------------------------------------------------------------- /dynamiq/cache/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/codecs.py -------------------------------------------------------------------------------- /dynamiq/cache/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/config.py -------------------------------------------------------------------------------- /dynamiq/cache/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/managers/__init__.py -------------------------------------------------------------------------------- /dynamiq/cache/managers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/managers/base.py -------------------------------------------------------------------------------- /dynamiq/cache/managers/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/managers/workflow.py -------------------------------------------------------------------------------- /dynamiq/cache/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cache/utils.py -------------------------------------------------------------------------------- /dynamiq/callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/callbacks/__init__.py -------------------------------------------------------------------------------- /dynamiq/callbacks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/callbacks/base.py -------------------------------------------------------------------------------- /dynamiq/callbacks/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/callbacks/streaming.py -------------------------------------------------------------------------------- /dynamiq/callbacks/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/callbacks/tracing.py -------------------------------------------------------------------------------- /dynamiq/cli/__init__.py: -------------------------------------------------------------------------------- 1 | from .commands.utils import main 2 | 3 | __all__ = ["main"] 4 | -------------------------------------------------------------------------------- /dynamiq/cli/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/client.py -------------------------------------------------------------------------------- /dynamiq/cli/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/cli/commands/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/commands/config.py -------------------------------------------------------------------------------- /dynamiq/cli/commands/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/commands/context.py -------------------------------------------------------------------------------- /dynamiq/cli/commands/org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/commands/org.py -------------------------------------------------------------------------------- /dynamiq/cli/commands/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/commands/project.py -------------------------------------------------------------------------------- /dynamiq/cli/commands/resource_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/commands/resource_profiles.py -------------------------------------------------------------------------------- /dynamiq/cli/commands/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/commands/service.py -------------------------------------------------------------------------------- /dynamiq/cli/commands/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/commands/utils.py -------------------------------------------------------------------------------- /dynamiq/cli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/cli/config.py -------------------------------------------------------------------------------- /dynamiq/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/clients/__init__.py -------------------------------------------------------------------------------- /dynamiq/clients/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/clients/base.py -------------------------------------------------------------------------------- /dynamiq/clients/dynamiq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/clients/dynamiq.py -------------------------------------------------------------------------------- /dynamiq/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/components/converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/components/converters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/converters/base.py -------------------------------------------------------------------------------- /dynamiq/components/converters/docx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/converters/docx.py -------------------------------------------------------------------------------- /dynamiq/components/converters/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/converters/html.py -------------------------------------------------------------------------------- /dynamiq/components/converters/pptx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/converters/pptx.py -------------------------------------------------------------------------------- /dynamiq/components/converters/pypdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/converters/pypdf.py -------------------------------------------------------------------------------- /dynamiq/components/converters/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/converters/text.py -------------------------------------------------------------------------------- /dynamiq/components/converters/unstructured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/converters/unstructured.py -------------------------------------------------------------------------------- /dynamiq/components/converters/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/converters/utils.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/components/embedders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/base.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/bedrock.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/cohere.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/gemini.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/huggingface.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/mistral.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/openai.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/vertexai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/vertexai.py -------------------------------------------------------------------------------- /dynamiq/components/embedders/watsonx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/embedders/watsonx.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/components/retrievers/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/chroma.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/elasticsearch.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/milvus.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/opensearch.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/pgvector.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/pinecone.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/qdrant.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/utils.py -------------------------------------------------------------------------------- /dynamiq/components/retrievers/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/retrievers/weaviate.py -------------------------------------------------------------------------------- /dynamiq/components/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/serializers.py -------------------------------------------------------------------------------- /dynamiq/components/splitters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/components/splitters/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/components/splitters/document.py -------------------------------------------------------------------------------- /dynamiq/connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/connections/__init__.py -------------------------------------------------------------------------------- /dynamiq/connections/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/connections/connections.py -------------------------------------------------------------------------------- /dynamiq/connections/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/connections/managers.py -------------------------------------------------------------------------------- /dynamiq/connections/storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/connections/storages.py -------------------------------------------------------------------------------- /dynamiq/evaluations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/__init__.py -------------------------------------------------------------------------------- /dynamiq/evaluations/base_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/base_evaluator.py -------------------------------------------------------------------------------- /dynamiq/evaluations/llm_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/llm_evaluator.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/__init__.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/answer_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/answer_correctness.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/bleu_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/bleu_score.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/context_precision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/context_precision.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/context_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/context_recall.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/factual_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/factual_correctness.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/faithfulness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/faithfulness.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/rouge_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/rouge_score.py -------------------------------------------------------------------------------- /dynamiq/evaluations/metrics/string_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/metrics/string_metrics.py -------------------------------------------------------------------------------- /dynamiq/evaluations/python_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/evaluations/python_evaluator.py -------------------------------------------------------------------------------- /dynamiq/executors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/executors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/executors/base.py -------------------------------------------------------------------------------- /dynamiq/executors/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/executors/pool.py -------------------------------------------------------------------------------- /dynamiq/flows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/flows/__init__.py -------------------------------------------------------------------------------- /dynamiq/flows/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/flows/base.py -------------------------------------------------------------------------------- /dynamiq/flows/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/flows/flow.py -------------------------------------------------------------------------------- /dynamiq/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/__init__.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/__init__.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/base.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/dynamiq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/dynamiq.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/dynamo_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/dynamo_db.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/in_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/in_memory.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/pinecone.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/postgresql.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/qdrant.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/sqlite.py -------------------------------------------------------------------------------- /dynamiq/memory/backends/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/backends/weaviate.py -------------------------------------------------------------------------------- /dynamiq/memory/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/memory/memory.py -------------------------------------------------------------------------------- /dynamiq/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/agent.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/base.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/exceptions.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/adaptive.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/adaptive_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/adaptive_manager.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/graph.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/graph_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/graph_manager.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/graph_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/graph_state.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/linear.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/linear_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/linear_manager.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/orchestrators/orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/orchestrators/orchestrator.py -------------------------------------------------------------------------------- /dynamiq/nodes/agents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/agents/utils.py -------------------------------------------------------------------------------- /dynamiq/nodes/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/audio/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/audio/elevenlabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/audio/elevenlabs.py -------------------------------------------------------------------------------- /dynamiq/nodes/audio/whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/audio/whisper.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/csv.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/docx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/docx.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/html.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/llm_text_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/llm_text_extractor.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/pptx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/pptx.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/pypdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/pypdf.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/text.py -------------------------------------------------------------------------------- /dynamiq/nodes/converters/unstructured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/converters/unstructured.py -------------------------------------------------------------------------------- /dynamiq/nodes/dry_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/dry_run.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/base.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/bedrock.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/cohere.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/gemini.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/huggingface.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/mistral.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/openai.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/vertexai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/vertexai.py -------------------------------------------------------------------------------- /dynamiq/nodes/embedders/watsonx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/embedders/watsonx.py -------------------------------------------------------------------------------- /dynamiq/nodes/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/exceptions.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/ai21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/ai21.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/anthropic.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/anyscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/anyscale.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/azureai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/azureai.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/base.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/bedrock.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/cerebras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/cerebras.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/cohere.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/custom_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/custom_llm.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/databricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/databricks.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/deepinfra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/deepinfra.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/deepseek.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/fireworksai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/fireworksai.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/gemini.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/groq.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/huggingface.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/mistral.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/nvidia_nim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/nvidia_nim.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/ollama.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/openai.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/perplexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/perplexity.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/replicate.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/sambanova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/sambanova.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/togetherai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/togetherai.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/vertexai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/vertexai.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/watsonx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/watsonx.py -------------------------------------------------------------------------------- /dynamiq/nodes/llms/xai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/llms/xai.py -------------------------------------------------------------------------------- /dynamiq/nodes/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/managers.py -------------------------------------------------------------------------------- /dynamiq/nodes/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/node.py -------------------------------------------------------------------------------- /dynamiq/nodes/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/operators/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/operators/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/operators/operators.py -------------------------------------------------------------------------------- /dynamiq/nodes/rankers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/rankers/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/rankers/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/rankers/cohere.py -------------------------------------------------------------------------------- /dynamiq/nodes/rankers/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/rankers/llm.py -------------------------------------------------------------------------------- /dynamiq/nodes/rankers/recency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/rankers/recency.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/base.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/chroma.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/elasticsearch.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/milvus.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/opensearch.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/pgvector.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/pinecone.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/qdrant.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/retriever.py -------------------------------------------------------------------------------- /dynamiq/nodes/retrievers/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/retrievers/weaviate.py -------------------------------------------------------------------------------- /dynamiq/nodes/splitters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/splitters/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/splitters/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/splitters/document.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/context_manager.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/e2b_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/e2b_sandbox.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/exa_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/exa_search.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/file_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/file_tools.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/firecrawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/firecrawl.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/function_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/function_tool.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/http_api_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/http_api_call.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/human_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/human_feedback.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/jina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/jina.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/llm_summarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/llm_summarizer.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/mcp.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/preprocess_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/preprocess_tool.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/python.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/python_code_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/python_code_executor.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/scale_serp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/scale_serp.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/sql_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/sql_executor.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/tavily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/tavily.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/thinking_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/thinking_tool.py -------------------------------------------------------------------------------- /dynamiq/nodes/tools/zenrows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/tools/zenrows.py -------------------------------------------------------------------------------- /dynamiq/nodes/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/types.py -------------------------------------------------------------------------------- /dynamiq/nodes/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import Input, Output 2 | -------------------------------------------------------------------------------- /dynamiq/nodes/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/utils/utils.py -------------------------------------------------------------------------------- /dynamiq/nodes/validators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/validators/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/validators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/validators/base.py -------------------------------------------------------------------------------- /dynamiq/nodes/validators/regex_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/validators/regex_match.py -------------------------------------------------------------------------------- /dynamiq/nodes/validators/valid_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/validators/valid_choices.py -------------------------------------------------------------------------------- /dynamiq/nodes/validators/valid_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/validators/valid_json.py -------------------------------------------------------------------------------- /dynamiq/nodes/validators/valid_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/validators/valid_python.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/__init__.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/base.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/chroma.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/elasticsearch.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/milvus.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/opensearch.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/pgvector.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/pinecone.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/qdrant.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/weaviate.py -------------------------------------------------------------------------------- /dynamiq/nodes/writers/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/nodes/writers/writer.py -------------------------------------------------------------------------------- /dynamiq/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/prompts/__init__.py -------------------------------------------------------------------------------- /dynamiq/prompts/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/prompts/prompts.py -------------------------------------------------------------------------------- /dynamiq/runnables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/runnables/__init__.py -------------------------------------------------------------------------------- /dynamiq/runnables/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/runnables/base.py -------------------------------------------------------------------------------- /dynamiq/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/serializers/dumpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/serializers/dumpers/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/serializers/dumpers/yaml.py -------------------------------------------------------------------------------- /dynamiq/serializers/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/serializers/loaders/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/serializers/loaders/yaml.py -------------------------------------------------------------------------------- /dynamiq/serializers/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/serializers/types.py -------------------------------------------------------------------------------- /dynamiq/storages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamiq/storages/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/file/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/file/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/file/base.py -------------------------------------------------------------------------------- /dynamiq/storages/file/in_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/file/in_memory.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/base.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/chroma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/chroma/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/chroma/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/chroma/chroma.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/elasticsearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/elasticsearch/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/elasticsearch/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/elasticsearch/elasticsearch.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/elasticsearch/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/elasticsearch/filters.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/exceptions.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/milvus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/milvus/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/milvus/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/milvus/filter.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/milvus/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/milvus/milvus.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/opensearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/opensearch/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/opensearch/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/opensearch/filters.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/opensearch/opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/opensearch/opensearch.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/pgvector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/pgvector/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/pgvector/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/pgvector/filters.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/pgvector/pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/pgvector/pgvector.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/pinecone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/pinecone/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/pinecone/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/pinecone/filters.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/pinecone/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/pinecone/pinecone.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/policies.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/qdrant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/qdrant/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/qdrant/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/qdrant/converters.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/qdrant/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/qdrant/filters.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/qdrant/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/qdrant/qdrant.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/utils.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/weaviate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/weaviate/__init__.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/weaviate/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/weaviate/filters.py -------------------------------------------------------------------------------- /dynamiq/storages/vector/weaviate/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/storages/vector/weaviate/weaviate.py -------------------------------------------------------------------------------- /dynamiq/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/types/__init__.py -------------------------------------------------------------------------------- /dynamiq/types/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/types/document.py -------------------------------------------------------------------------------- /dynamiq/types/dry_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/types/dry_run.py -------------------------------------------------------------------------------- /dynamiq/types/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/types/feedback.py -------------------------------------------------------------------------------- /dynamiq/types/llm_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/types/llm_tool.py -------------------------------------------------------------------------------- /dynamiq/types/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/types/streaming.py -------------------------------------------------------------------------------- /dynamiq/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/__init__.py -------------------------------------------------------------------------------- /dynamiq/utils/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/chat.py -------------------------------------------------------------------------------- /dynamiq/utils/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/duration.py -------------------------------------------------------------------------------- /dynamiq/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/env.py -------------------------------------------------------------------------------- /dynamiq/utils/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/feedback.py -------------------------------------------------------------------------------- /dynamiq/utils/file_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/file_types.py -------------------------------------------------------------------------------- /dynamiq/utils/json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/json_parser.py -------------------------------------------------------------------------------- /dynamiq/utils/jsonpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/jsonpath.py -------------------------------------------------------------------------------- /dynamiq/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/logger.py -------------------------------------------------------------------------------- /dynamiq/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/utils.py -------------------------------------------------------------------------------- /dynamiq/utils/workflow_generation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/workflow_generation/__init__.py -------------------------------------------------------------------------------- /dynamiq/utils/workflow_generation/mock_knowledgebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/workflow_generation/mock_knowledgebase.py -------------------------------------------------------------------------------- /dynamiq/utils/workflow_generation/node_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/utils/workflow_generation/node_generation.py -------------------------------------------------------------------------------- /dynamiq/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/workflow/__init__.py -------------------------------------------------------------------------------- /dynamiq/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/dynamiq/workflow/workflow.py -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cli/agent_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/cli/agent_service/Dockerfile -------------------------------------------------------------------------------- /examples/cli/agent_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/cli/agent_service/README.md -------------------------------------------------------------------------------- /examples/cli/agent_service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/cli/agent_service/main.py -------------------------------------------------------------------------------- /examples/cli/agent_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/cli/agent_service/requirements.txt -------------------------------------------------------------------------------- /examples/components/agents/agents/agent_filesystem_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/agent_filesystem_interaction.py -------------------------------------------------------------------------------- /examples/components/agents/agents/agent_multi_tool_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/agent_multi_tool_workflow.py -------------------------------------------------------------------------------- /examples/components/agents/agents/agent_multi_tool_workflow_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/agent_multi_tool_workflow_streaming.py -------------------------------------------------------------------------------- /examples/components/agents/agents/agent_vector_store_write_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/agent_vector_store_write_pipeline.py -------------------------------------------------------------------------------- /examples/components/agents/agents/agent_vector_store_writer_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/agent_vector_store_writer_tool.py -------------------------------------------------------------------------------- /examples/components/agents/agents/agent_wf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/agent_wf.py -------------------------------------------------------------------------------- /examples/components/agents/agents/context_management_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/context_management_example.py -------------------------------------------------------------------------------- /examples/components/agents/agents/reflection_agent_wf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/reflection_agent_wf.py -------------------------------------------------------------------------------- /examples/components/agents/agents/simple_agent_wf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/simple_agent_wf.py -------------------------------------------------------------------------------- /examples/components/agents/agents/use_agent_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/use_agent_messages.py -------------------------------------------------------------------------------- /examples/components/agents/agents/use_agent_with_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/use_agent_with_agent_tool.py -------------------------------------------------------------------------------- /examples/components/agents/agents/use_agent_with_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/use_agent_with_error_handling.py -------------------------------------------------------------------------------- /examples/components/agents/agents/use_agent_with_http_child.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/use_agent_with_http_child.py -------------------------------------------------------------------------------- /examples/components/agents/agents/use_agent_with_parallel_agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/use_agent_with_parallel_agent_tool.py -------------------------------------------------------------------------------- /examples/components/agents/agents/use_agents_hidden_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/use_agents_hidden_params.py -------------------------------------------------------------------------------- /examples/components/agents/agents/use_agents_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/agents/use_agents_vision.py -------------------------------------------------------------------------------- /examples/components/agents/orchestrators/graph_orchestrator/code_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/orchestrators/graph_orchestrator/code_assistant.py -------------------------------------------------------------------------------- /examples/components/agents/orchestrators/graph_orchestrator/concierge_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/orchestrators/graph_orchestrator/concierge_orchestration.py -------------------------------------------------------------------------------- /examples/components/agents/orchestrators/graph_orchestrator/email_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/orchestrators/graph_orchestrator/email_writer.py -------------------------------------------------------------------------------- /examples/components/agents/orchestrators/graph_orchestrator/graph_orchestrator_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/orchestrators/graph_orchestrator/graph_orchestrator_wf.yaml -------------------------------------------------------------------------------- /examples/components/agents/orchestrators/graph_orchestrator/graph_orchestrator_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/orchestrators/graph_orchestrator/graph_orchestrator_yaml.py -------------------------------------------------------------------------------- /examples/components/agents/orchestrators/graph_orchestrator/trip_planner_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/orchestrators/graph_orchestrator/trip_planner_orchestration.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/intermediate_streaming/agents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/intermediate_streaming/agents/agent.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/intermediate_streaming/agents/agents_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/intermediate_streaming/agents/agents_test.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/intermediate_streaming/agents/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/intermediate_streaming/agents/app.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/intermediate_streaming/graph_orchestrator/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/intermediate_streaming/graph_orchestrator/app.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/intermediate_streaming/graph_orchestrator/graph_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/intermediate_streaming/graph_orchestrator/graph_orchestrator.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/intermediate_streaming/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/intermediate_streaming/run.sh -------------------------------------------------------------------------------- /examples/components/agents/streaming/react/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/react/app.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/react/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/react/backend.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/react/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/react/run.sh -------------------------------------------------------------------------------- /examples/components/agents/streaming/react/use_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/react/use_streaming.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/reflection/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/reflection/app.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/reflection/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/reflection/backend.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/reflection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/reflection/run.sh -------------------------------------------------------------------------------- /examples/components/agents/streaming/simple/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/simple/app.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/simple/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/simple/backend.py -------------------------------------------------------------------------------- /examples/components/agents/streaming/simple/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/agents/streaming/simple/run.sh -------------------------------------------------------------------------------- /examples/components/core/dag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/core/dag/agent_file_storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_file_storage.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/agent_memory_cycle_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_memory_cycle_dag.py -------------------------------------------------------------------------------- /examples/components/core/dag/agent_memory_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_memory_dag.py -------------------------------------------------------------------------------- /examples/components/core/dag/agent_memory_dag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_memory_dag.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/agent_memory_db_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_memory_db_dag.py -------------------------------------------------------------------------------- /examples/components/core/dag/agent_memory_dynamo_db_dag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_memory_dynamo_db_dag.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/agent_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_rag.py -------------------------------------------------------------------------------- /examples/components/core/dag/agent_rag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_rag.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/agent_with_tool_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_with_tool_params.py -------------------------------------------------------------------------------- /examples/components/core/dag/agent_with_tool_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agent_with_tool_params.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/agents_as_tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/agents_as_tools.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/csv_embedding_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/csv_embedding_flow.py -------------------------------------------------------------------------------- /examples/components/core/dag/csv_embedding_flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/csv_embedding_flow.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag.py -------------------------------------------------------------------------------- /examples/components/core/dag/dag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/dag_llm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_llm.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/dag_llm_structured_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_llm_structured_output.py -------------------------------------------------------------------------------- /examples/components/core/dag/dag_llm_structured_output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_llm_structured_output.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/dag_llm_tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_llm_tools.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/dag_mcp_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_mcp_server.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/dag_mcp_tool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_mcp_tool.yaml -------------------------------------------------------------------------------- /examples/components/core/dag/dag_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_yaml.py -------------------------------------------------------------------------------- /examples/components/core/dag/dag_yaml_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_yaml_llm.py -------------------------------------------------------------------------------- /examples/components/core/dag/dag_yaml_llm_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_yaml_llm_tools.py -------------------------------------------------------------------------------- /examples/components/core/dag/dag_yaml_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/dag_yaml_mcp.py -------------------------------------------------------------------------------- /examples/components/core/dag/run_agents_as_tools_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/run_agents_as_tools_yaml.py -------------------------------------------------------------------------------- /examples/components/core/dag/simple_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/simple_dag.py -------------------------------------------------------------------------------- /examples/components/core/dag/yaml_agent_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/dag/yaml_agent_example.py -------------------------------------------------------------------------------- /examples/components/core/memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/README.md -------------------------------------------------------------------------------- /examples/components/core/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/core/memory/demo_agent_chat_memory_pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_agent_chat_memory_pinecone.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_article.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_memory.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_memory_dynamiq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_memory_dynamiq.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_memory_dynamo_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_memory_dynamo_db.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_memory_pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_memory_pinecone.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_memory_postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_memory_postgresql.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_memory_qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_memory_qdrant.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_memory_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_memory_sqlite.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_memory_weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_memory_weaviate.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_simple_agent_chat_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_simple_agent_chat_memory.py -------------------------------------------------------------------------------- /examples/components/core/memory/demo_simple_agent_chat_memory_qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/memory/demo_simple_agent_chat_memory_qdrant.py -------------------------------------------------------------------------------- /examples/components/core/tracing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/core/tracing/agentops_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/tracing/agentops_auto.py -------------------------------------------------------------------------------- /examples/components/core/tracing/agentops_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/tracing/agentops_tracing.py -------------------------------------------------------------------------------- /examples/components/core/tracing/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/tracing/draw.py -------------------------------------------------------------------------------- /examples/components/core/tracing/langfuse_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/tracing/langfuse_tracing.py -------------------------------------------------------------------------------- /examples/components/core/websocket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/core/websocket/sse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/core/websocket/sse/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/sse/http_client.py -------------------------------------------------------------------------------- /examples/components/core/websocket/sse/http_server_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/sse/http_server_fastapi.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_client.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_server_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_server_fastapi.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_streamlit/README.md -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_agent/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_streamlit/example_agent/app.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_agent/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_streamlit/example_agent/server.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_agent_chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_agent_chat/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_streamlit/example_agent_chat/app.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_agent_chat/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_streamlit/example_agent_chat/server.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_llm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_llm/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_streamlit/example_llm/app.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/example_llm/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_streamlit/example_llm/server.py -------------------------------------------------------------------------------- /examples/components/core/websocket/ws_streamlit/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/core/websocket/ws_streamlit/run.sh -------------------------------------------------------------------------------- /examples/components/data/file.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/data/file.docx -------------------------------------------------------------------------------- /examples/components/data/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/data/file.pdf -------------------------------------------------------------------------------- /examples/components/data/file.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/data/file.pptx -------------------------------------------------------------------------------- /examples/components/data/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/data/file.txt -------------------------------------------------------------------------------- /examples/components/data/img.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/data/img.jpeg -------------------------------------------------------------------------------- /examples/components/data/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/data/sample.html -------------------------------------------------------------------------------- /examples/components/data/sample_regression_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/data/sample_regression_data.csv -------------------------------------------------------------------------------- /examples/components/evaluations/llm_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/llm_evaluator.py -------------------------------------------------------------------------------- /examples/components/evaluations/metrics/answer_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/metrics/answer_correctness.py -------------------------------------------------------------------------------- /examples/components/evaluations/metrics/bleu_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/metrics/bleu_score.py -------------------------------------------------------------------------------- /examples/components/evaluations/metrics/context_precision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/metrics/context_precision.py -------------------------------------------------------------------------------- /examples/components/evaluations/metrics/context_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/metrics/context_recall.py -------------------------------------------------------------------------------- /examples/components/evaluations/metrics/factual_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/metrics/factual_correctness.py -------------------------------------------------------------------------------- /examples/components/evaluations/metrics/faithfulness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/metrics/faithfulness.py -------------------------------------------------------------------------------- /examples/components/evaluations/metrics/rouge_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/metrics/rouge_score.py -------------------------------------------------------------------------------- /examples/components/evaluations/metrics/string_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/metrics/string_metrics.py -------------------------------------------------------------------------------- /examples/components/evaluations/python_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/python_evaluator.py -------------------------------------------------------------------------------- /examples/components/evaluations/workflow_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/evaluations/workflow_eval.py -------------------------------------------------------------------------------- /examples/components/helpers/converters/csv_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/helpers/converters/csv_converter.py -------------------------------------------------------------------------------- /examples/components/helpers/converters/docx_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/helpers/converters/docx_converter.py -------------------------------------------------------------------------------- /examples/components/helpers/converters/html_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/helpers/converters/html_converter.py -------------------------------------------------------------------------------- /examples/components/helpers/converters/pptx_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/helpers/converters/pptx_converter.py -------------------------------------------------------------------------------- /examples/components/helpers/converters/pypdf_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/helpers/converters/pypdf_converter.py -------------------------------------------------------------------------------- /examples/components/helpers/converters/txt_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/helpers/converters/txt_converter.py -------------------------------------------------------------------------------- /examples/components/helpers/validators/valid_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/helpers/validators/valid_python.py -------------------------------------------------------------------------------- /examples/components/llm/llm_with_files/llm_file_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llm_with_files/llm_file_example.py -------------------------------------------------------------------------------- /examples/components/llm/llm_with_files/use_file_tool_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llm_with_files/use_file_tool_example.py -------------------------------------------------------------------------------- /examples/components/llm/llm_with_vision/img_url_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llm_with_vision/img_url_example.py -------------------------------------------------------------------------------- /examples/components/llm/llm_with_vision/node_pdf_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llm_with_vision/node_pdf_extractor.py -------------------------------------------------------------------------------- /examples/components/llm/llm_with_vision/pdf_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llm_with_vision/pdf_extractor.py -------------------------------------------------------------------------------- /examples/components/llm/llms/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llms/custom.py -------------------------------------------------------------------------------- /examples/components/llm/llms/function_calling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llms/function_calling.py -------------------------------------------------------------------------------- /examples/components/llm/llms/mistral_with_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llms/mistral_with_messages.py -------------------------------------------------------------------------------- /examples/components/llm/llms/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llms/ollama.py -------------------------------------------------------------------------------- /examples/components/llm/llms/perplexity_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llms/perplexity_citations.py -------------------------------------------------------------------------------- /examples/components/llm/llms/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llms/streaming.py -------------------------------------------------------------------------------- /examples/components/llm/llms/structured_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llms/structured_output.py -------------------------------------------------------------------------------- /examples/components/llm/llms/thinking_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/llm/llms/thinking_streaming.py -------------------------------------------------------------------------------- /examples/components/rag/embedders/embedders_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/embedders/embedders_execution.py -------------------------------------------------------------------------------- /examples/components/rag/rerankers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/rag/rerankers/use_cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/rerankers/use_cohere.py -------------------------------------------------------------------------------- /examples/components/rag/retrievers/__init__.py: -------------------------------------------------------------------------------- 1 | """Examples demonstrating retriever usage.""" 2 | -------------------------------------------------------------------------------- /examples/components/rag/retrievers/score_threshold_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/retrievers/score_threshold_demo.py -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/README.md -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_chroma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_chroma.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_elasticsearch.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_html_pinecone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_html_pinecone.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_pgvector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_pgvector.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_pinecone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_pinecone.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_qdrant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_qdrant.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_weaviate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_weaviate.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_weaviate_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_weaviate_custom.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_weaviate_tenant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_weaviate_tenant.yaml -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dag/dag_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dag/dag_yaml.py -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/delete_documents/pinecone_delete_by_file_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/delete_documents/pinecone_delete_by_file_ids.py -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/dry_run_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/dry_run_example.py -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/elasticsearch_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/elasticsearch_flow.py -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/filters/filtering_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/filters/filtering_example.py -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/filters/filtering_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/filters/filtering_readme.md -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/pinecone_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/pinecone_flow.py -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/scrapping_pinecone_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/scrapping_pinecone_flow.py -------------------------------------------------------------------------------- /examples/components/rag/vector_stores/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/rag/vector_stores/utils.py -------------------------------------------------------------------------------- /examples/components/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/README.md -------------------------------------------------------------------------------- /examples/components/tools/custom_tools/calculator_sympy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/custom_tools/calculator_sympy.py -------------------------------------------------------------------------------- /examples/components/tools/custom_tools/file_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/custom_tools/file_reader.py -------------------------------------------------------------------------------- /examples/components/tools/custom_tools/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/custom_tools/scraper.py -------------------------------------------------------------------------------- /examples/components/tools/human_in_the_loop/confirmation_email_writer/console/console_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/human_in_the_loop/confirmation_email_writer/console/console_agent.py -------------------------------------------------------------------------------- /examples/components/tools/human_in_the_loop/confirmation_email_writer/socket/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/human_in_the_loop/confirmation_email_writer/socket/client.py -------------------------------------------------------------------------------- /examples/components/tools/human_in_the_loop/confirmation_email_writer/socket/socket_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/human_in_the_loop/confirmation_email_writer/socket/socket_agent.py -------------------------------------------------------------------------------- /examples/components/tools/human_in_the_loop/streaming_orchestrator/client_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/human_in_the_loop/streaming_orchestrator/client_streaming.py -------------------------------------------------------------------------------- /examples/components/tools/human_in_the_loop/streaming_orchestrator/server_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/human_in_the_loop/streaming_orchestrator/server_streaming.py -------------------------------------------------------------------------------- /examples/components/tools/human_in_the_loop/streaming_post_writer/client_streaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/human_in_the_loop/streaming_post_writer/client_streaming.html -------------------------------------------------------------------------------- /examples/components/tools/human_in_the_loop/streaming_post_writer/server_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/human_in_the_loop/streaming_post_writer/server_streaming.py -------------------------------------------------------------------------------- /examples/components/tools/mcp_server_as_tool/mcp_servers/math_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/mcp_server_as_tool/mcp_servers/math_server.py -------------------------------------------------------------------------------- /examples/components/tools/mcp_server_as_tool/mcp_servers/weather_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/mcp_server_as_tool/mcp_servers/weather_server.py -------------------------------------------------------------------------------- /examples/components/tools/mcp_server_as_tool/use_mcp_adapter_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/mcp_server_as_tool/use_mcp_adapter_tool.py -------------------------------------------------------------------------------- /examples/components/tools/use_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_agent.py -------------------------------------------------------------------------------- /examples/components/tools/use_exa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_exa.py -------------------------------------------------------------------------------- /examples/components/tools/use_firecrawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_firecrawl.py -------------------------------------------------------------------------------- /examples/components/tools/use_function_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_function_tool.py -------------------------------------------------------------------------------- /examples/components/tools/use_http_api_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_http_api_node.py -------------------------------------------------------------------------------- /examples/components/tools/use_jina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_jina.py -------------------------------------------------------------------------------- /examples/components/tools/use_python_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_python_node.py -------------------------------------------------------------------------------- /examples/components/tools/use_react_fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_react_fc.py -------------------------------------------------------------------------------- /examples/components/tools/use_react_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_react_search.py -------------------------------------------------------------------------------- /examples/components/tools/use_react_with_coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_react_with_coding.py -------------------------------------------------------------------------------- /examples/components/tools/use_serp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_serp.py -------------------------------------------------------------------------------- /examples/components/tools/use_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_sql.py -------------------------------------------------------------------------------- /examples/components/tools/use_tavily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/components/tools/use_tavily.py -------------------------------------------------------------------------------- /examples/llm_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/llm_setup.py -------------------------------------------------------------------------------- /examples/use_cases/agent_file_processing/agent_file_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agent_file_processing/agent_file_api.py -------------------------------------------------------------------------------- /examples/use_cases/agent_file_processing/file_processor_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agent_file_processing/file_processor_server.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/README.md -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_coder.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_deep_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_deep_scraping.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_feedback_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_feedback_analyst.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_financial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_financial.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_house_price_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_house_price_regression.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_python_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_python_tool.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_searcher.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_searcher_multi_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_searcher_multi_tool.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_web_researcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_web_researcher.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_with_local_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_with_local_llm.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_with_role_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_with_role_params.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_with_small_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_with_small_llm.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/agent_with_thinking_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/agent_with_thinking_tool.py -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/data/house_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/data/house_prices.csv -------------------------------------------------------------------------------- /examples/use_cases/agents_use_cases/data/product_feedback.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/agents_use_cases/data/product_feedback.csv -------------------------------------------------------------------------------- /examples/use_cases/chainlit/chainlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/chainlit/chainlit.md -------------------------------------------------------------------------------- /examples/use_cases/chainlit/main_chainlit_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/chainlit/main_chainlit_agent.py -------------------------------------------------------------------------------- /examples/use_cases/chainlit/main_chainlit_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/chainlit/main_chainlit_server.py -------------------------------------------------------------------------------- /examples/use_cases/chainlit/main_chainlit_simple_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/chainlit/main_chainlit_simple_agent.py -------------------------------------------------------------------------------- /examples/use_cases/chainlit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/chainlit/utils.py -------------------------------------------------------------------------------- /examples/use_cases/customer_support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/customer_support/README.md -------------------------------------------------------------------------------- /examples/use_cases/customer_support/bank_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/customer_support/bank_api.py -------------------------------------------------------------------------------- /examples/use_cases/customer_support/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/customer_support/main.py -------------------------------------------------------------------------------- /examples/use_cases/data_analyst/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/data_analyst/agent.py -------------------------------------------------------------------------------- /examples/use_cases/data_analyst/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/data_analyst/streamlit_app.py -------------------------------------------------------------------------------- /examples/use_cases/erp_system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/erp_system/README.md -------------------------------------------------------------------------------- /examples/use_cases/erp_system/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/erp_system/agent.py -------------------------------------------------------------------------------- /examples/use_cases/erp_system/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/erp_system/app.py -------------------------------------------------------------------------------- /examples/use_cases/erp_system/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/erp_system/backend.py -------------------------------------------------------------------------------- /examples/use_cases/erp_system/database_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/erp_system/database_tool.py -------------------------------------------------------------------------------- /examples/use_cases/erp_system/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/erp_system/run.sh -------------------------------------------------------------------------------- /examples/use_cases/financial_assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/financial_assistant/README.md -------------------------------------------------------------------------------- /examples/use_cases/financial_assistant/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/financial_assistant/main.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/README.md -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/gpt_researcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/gpt_researcher/__init__.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/gpt_researcher/conduct_research.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/gpt_researcher/conduct_research.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/gpt_researcher/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/gpt_researcher/prompts.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/gpt_researcher/write_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/gpt_researcher/write_report.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/main_gpt_researcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/main_gpt_researcher.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/main_multi_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/main_multi_agents.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/multi_agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/multi_agents/__init__.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/multi_agents/editor_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/multi_agents/editor_agent.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/multi_agents/human_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/multi_agents/human_agent.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/multi_agents/planner_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/multi_agents/planner_agent.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/multi_agents/publisher_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/multi_agents/publisher_agent.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/multi_agents/researcher_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/multi_agents/researcher_agent.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/multi_agents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/multi_agents/utils.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/multi_agents/writer_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/multi_agents/writer_agent.py -------------------------------------------------------------------------------- /examples/use_cases/gpt_researcher/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/gpt_researcher/utils.py -------------------------------------------------------------------------------- /examples/use_cases/job_posting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/job_posting/README.md -------------------------------------------------------------------------------- /examples/use_cases/job_posting/agent_job_posting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/job_posting/agent_job_posting.py -------------------------------------------------------------------------------- /examples/use_cases/job_posting/job_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/job_posting/job_example.md -------------------------------------------------------------------------------- /examples/use_cases/literature_overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/literature_overview/README.md -------------------------------------------------------------------------------- /examples/use_cases/literature_overview/agent_literature_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/literature_overview/agent_literature_overview.py -------------------------------------------------------------------------------- /examples/use_cases/project_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/project_manager/README.md -------------------------------------------------------------------------------- /examples/use_cases/project_manager/agent_pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/project_manager/agent_pm.py -------------------------------------------------------------------------------- /examples/use_cases/project_manager/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/project_manager/app.py -------------------------------------------------------------------------------- /examples/use_cases/project_manager/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/project_manager/backend.py -------------------------------------------------------------------------------- /examples/use_cases/project_manager/composio_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/project_manager/composio_tool.py -------------------------------------------------------------------------------- /examples/use_cases/project_manager/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/project_manager/run.sh -------------------------------------------------------------------------------- /examples/use_cases/researcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/researcher/README.md -------------------------------------------------------------------------------- /examples/use_cases/researcher/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/researcher/agent.py -------------------------------------------------------------------------------- /examples/use_cases/researcher/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/researcher/app.py -------------------------------------------------------------------------------- /examples/use_cases/researcher/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/researcher/backend.py -------------------------------------------------------------------------------- /examples/use_cases/researcher/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/researcher/run.sh -------------------------------------------------------------------------------- /examples/use_cases/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/search/README.md -------------------------------------------------------------------------------- /examples/use_cases/search/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/search/app.py -------------------------------------------------------------------------------- /examples/use_cases/search/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/search/run.sh -------------------------------------------------------------------------------- /examples/use_cases/search/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/search/server.py -------------------------------------------------------------------------------- /examples/use_cases/search/server_via_dynamiq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/search/server_via_dynamiq.py -------------------------------------------------------------------------------- /examples/use_cases/smm_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/smm_manager/README.md -------------------------------------------------------------------------------- /examples/use_cases/smm_manager/data/emails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/smm_manager/data/emails.txt -------------------------------------------------------------------------------- /examples/use_cases/smm_manager/mailgun_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/smm_manager/mailgun_tool.py -------------------------------------------------------------------------------- /examples/use_cases/smm_manager/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/smm_manager/main.py -------------------------------------------------------------------------------- /examples/use_cases/trip_planner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/trip_planner/README.md -------------------------------------------------------------------------------- /examples/use_cases/trip_planner/agent_trip_planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/trip_planner/agent_trip_planner.py -------------------------------------------------------------------------------- /examples/use_cases/trip_planner/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/examples/use_cases/trip_planner/prompts.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/generate_mkdocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/scripts/generate_mkdocs.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/evaluations/metrics/test_answer_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/metrics/test_answer_correctness.py -------------------------------------------------------------------------------- /tests/integration/evaluations/metrics/test_bleu_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/metrics/test_bleu_score.py -------------------------------------------------------------------------------- /tests/integration/evaluations/metrics/test_context_precision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/metrics/test_context_precision.py -------------------------------------------------------------------------------- /tests/integration/evaluations/metrics/test_context_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/metrics/test_context_recall.py -------------------------------------------------------------------------------- /tests/integration/evaluations/metrics/test_factual_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/metrics/test_factual_correctness.py -------------------------------------------------------------------------------- /tests/integration/evaluations/metrics/test_faithfulness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/metrics/test_faithfulness.py -------------------------------------------------------------------------------- /tests/integration/evaluations/metrics/test_rouge_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/metrics/test_rouge_score.py -------------------------------------------------------------------------------- /tests/integration/evaluations/metrics/test_string_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/metrics/test_string_metrics.py -------------------------------------------------------------------------------- /tests/integration/evaluations/test_llm_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/test_llm_evaluator.py -------------------------------------------------------------------------------- /tests/integration/evaluations/test_python_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/evaluations/test_python_evaluator.py -------------------------------------------------------------------------------- /tests/integration/flows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/flows/test_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/flows/test_flow.py -------------------------------------------------------------------------------- /tests/integration/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/nodes/agents/test_agent_input_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/agents/test_agent_input_message.py -------------------------------------------------------------------------------- /tests/integration/nodes/agents/test_agent_map_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/agents/test_agent_map_streaming.py -------------------------------------------------------------------------------- /tests/integration/nodes/agents/test_agent_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/agents/test_agent_methods.py -------------------------------------------------------------------------------- /tests/integration/nodes/agents/test_agent_structured_python_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/agents/test_agent_structured_python_tool.py -------------------------------------------------------------------------------- /tests/integration/nodes/audio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/nodes/audio/test_elevenlabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/audio/test_elevenlabs.py -------------------------------------------------------------------------------- /tests/integration/nodes/audio/test_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/audio/test_whisper.py -------------------------------------------------------------------------------- /tests/integration/nodes/callbacks/test_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/callbacks/test_callbacks.py -------------------------------------------------------------------------------- /tests/integration/nodes/converters/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/converters/test_csv.py -------------------------------------------------------------------------------- /tests/integration/nodes/converters/test_docx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/converters/test_docx.py -------------------------------------------------------------------------------- /tests/integration/nodes/converters/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/converters/test_html.py -------------------------------------------------------------------------------- /tests/integration/nodes/converters/test_pptx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/converters/test_pptx.py -------------------------------------------------------------------------------- /tests/integration/nodes/converters/test_pypdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/converters/test_pypdf.py -------------------------------------------------------------------------------- /tests/integration/nodes/converters/test_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/converters/test_txt.py -------------------------------------------------------------------------------- /tests/integration/nodes/converters/test_unstructured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/converters/test_unstructured.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/conftest.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_bedrock_embedders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_bedrock_embedders.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_cohere_embedders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_cohere_embedders.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_embedding_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_embedding_tracing.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_gemini_embedders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_gemini_embedders.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_huggingface_embedders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_huggingface_embedders.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_mistral_embedders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_mistral_embedders.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_openai_embedders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_openai_embedders.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_vertexai_embedders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_vertexai_embedders.py -------------------------------------------------------------------------------- /tests/integration/nodes/embedders/test_watsonx_embedders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/embedders/test_watsonx_embedders.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_ai21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_ai21.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_anthropic.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_anyscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_anyscale.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_azure.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_bedrock.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_cerebras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_cerebras.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_customllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_customllm.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_databricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_databricks.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_deepinfra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_deepinfra.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_deepseek.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_fireworksai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_fireworksai.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_gemini.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_groq.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_huggingface.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_mistral.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_nvidia_nim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_nvidia_nim.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_ollama.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_openai.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_perplexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_perplexity.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_replicate.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_together.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_vertexai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_vertexai.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_watsonx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_watsonx.py -------------------------------------------------------------------------------- /tests/integration/nodes/llms/test_xai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/llms/test_xai.py -------------------------------------------------------------------------------- /tests/integration/nodes/operators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/nodes/operators/test_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/operators/test_choice.py -------------------------------------------------------------------------------- /tests/integration/nodes/operators/test_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/operators/test_map.py -------------------------------------------------------------------------------- /tests/integration/nodes/operators/test_map_react_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/operators/test_map_react_streaming.py -------------------------------------------------------------------------------- /tests/integration/nodes/orchestrators/test_graph_orchestrators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/orchestrators/test_graph_orchestrators.py -------------------------------------------------------------------------------- /tests/integration/nodes/rerankers/test_cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/rerankers/test_cohere.py -------------------------------------------------------------------------------- /tests/integration/nodes/retrievers/test_milvus_retriever_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/retrievers/test_milvus_retriever_flow.py -------------------------------------------------------------------------------- /tests/integration/nodes/retrievers/test_qdrant_retriever_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/retrievers/test_qdrant_retriever_flow.py -------------------------------------------------------------------------------- /tests/integration/nodes/test_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/test_caching.py -------------------------------------------------------------------------------- /tests/integration/nodes/test_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/test_streaming.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_exa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_exa.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_firecrawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_firecrawl.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_http_api_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_http_api_call.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_jina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_jina.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_mcp_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_mcp_tool.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_python.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_serp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_serp.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_sql_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_sql_executor.py -------------------------------------------------------------------------------- /tests/integration/nodes/tools/test_tavily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/tools/test_tavily.py -------------------------------------------------------------------------------- /tests/integration/nodes/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/nodes/validators/test_regex_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/validators/test_regex_match.py -------------------------------------------------------------------------------- /tests/integration/nodes/validators/test_valid_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/validators/test_valid_choices.py -------------------------------------------------------------------------------- /tests/integration/nodes/validators/test_valid_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/validators/test_valid_json.py -------------------------------------------------------------------------------- /tests/integration/nodes/validators/test_valid_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/validators/test_valid_python.py -------------------------------------------------------------------------------- /tests/integration/nodes/writers/test_milvus_writer_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/writers/test_milvus_writer_flow.py -------------------------------------------------------------------------------- /tests/integration/nodes/writers/test_qdrant_writer_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/nodes/writers/test_qdrant_writer_flow.py -------------------------------------------------------------------------------- /tests/integration/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/workflows/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration/workflows/test_serialization.py -------------------------------------------------------------------------------- /tests/integration_with_creds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/__init__.py -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/test_agent_escape_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/test_agent_escape_variables.py -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/test_agent_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/test_agent_images.py -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/test_agent_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/test_agent_input.py -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/test_agent_llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/test_agent_llms.py -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/test_agent_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/test_agent_memory.py -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/test_agent_python_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/test_agent_python_tool.py -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/test_agent_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/test_agent_streaming.py -------------------------------------------------------------------------------- /tests/integration_with_creds/agents/test_agents_as_tools_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/agents/test_agents_as_tools_parallel.py -------------------------------------------------------------------------------- /tests/integration_with_creds/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_with_creds/memory/test_memory_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/memory/test_memory_retrieval.py -------------------------------------------------------------------------------- /tests/integration_with_creds/test_rag_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/integration_with_creds/test_rag_yaml.py -------------------------------------------------------------------------------- /tests/unit/components/evaluators/test_llm_evaluator_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/evaluators/test_llm_evaluator_unit.py -------------------------------------------------------------------------------- /tests/unit/components/retrievers/test_chroma_document_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/retrievers/test_chroma_document_retriever.py -------------------------------------------------------------------------------- /tests/unit/components/retrievers/test_elasticsearch_document_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/retrievers/test_elasticsearch_document_retriever.py -------------------------------------------------------------------------------- /tests/unit/components/retrievers/test_milvus_document_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/retrievers/test_milvus_document_retriever.py -------------------------------------------------------------------------------- /tests/unit/components/retrievers/test_pgvector_document_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/retrievers/test_pgvector_document_retriever.py -------------------------------------------------------------------------------- /tests/unit/components/retrievers/test_pinecone_document_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/retrievers/test_pinecone_document_retriever.py -------------------------------------------------------------------------------- /tests/unit/components/retrievers/test_qdrant_document_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/retrievers/test_qdrant_document_retriever.py -------------------------------------------------------------------------------- /tests/unit/components/retrievers/test_weaviate_document_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/retrievers/test_weaviate_document_retriever.py -------------------------------------------------------------------------------- /tests/unit/components/test_embedder_truncation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/components/test_embedder_truncation.py -------------------------------------------------------------------------------- /tests/unit/connections/test_connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/connections/test_connections.py -------------------------------------------------------------------------------- /tests/unit/connections/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/connections/test_managers.py -------------------------------------------------------------------------------- /tests/unit/nodes/prompts/test_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/prompts/test_prompts.py -------------------------------------------------------------------------------- /tests/unit/nodes/retrievers/test_chroma_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/retrievers/test_chroma_retriever.py -------------------------------------------------------------------------------- /tests/unit/nodes/retrievers/test_elasticsearch_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/retrievers/test_elasticsearch_retriever.py -------------------------------------------------------------------------------- /tests/unit/nodes/retrievers/test_milvus_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/retrievers/test_milvus_retriever.py -------------------------------------------------------------------------------- /tests/unit/nodes/retrievers/test_pgvector_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/retrievers/test_pgvector_retriever.py -------------------------------------------------------------------------------- /tests/unit/nodes/retrievers/test_pinecone_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/retrievers/test_pinecone_retriever.py -------------------------------------------------------------------------------- /tests/unit/nodes/retrievers/test_qdrant_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/retrievers/test_qdrant_retriever.py -------------------------------------------------------------------------------- /tests/unit/nodes/retrievers/test_weaviate_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/retrievers/test_weaviate_retriever.py -------------------------------------------------------------------------------- /tests/unit/nodes/retrievers/test_weaviate_tenant_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/retrievers/test_weaviate_tenant_retriever.py -------------------------------------------------------------------------------- /tests/unit/nodes/schema_generation/test_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/schema_generation/test_schemas.py -------------------------------------------------------------------------------- /tests/unit/nodes/test_connection_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/test_connection_management.py -------------------------------------------------------------------------------- /tests/unit/nodes/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/test_node.py -------------------------------------------------------------------------------- /tests/unit/nodes/tools/test_file_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/tools/test_file_tools.py -------------------------------------------------------------------------------- /tests/unit/nodes/tools/test_python_code_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/tools/test_python_code_executor.py -------------------------------------------------------------------------------- /tests/unit/nodes/tools/test_python_enhanced_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/tools/test_python_enhanced_outputs.py -------------------------------------------------------------------------------- /tests/unit/nodes/writers/test_elasticsearch_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/writers/test_elasticsearch_writer.py -------------------------------------------------------------------------------- /tests/unit/nodes/writers/test_milvus_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/writers/test_milvus_writer.py -------------------------------------------------------------------------------- /tests/unit/nodes/writers/test_pgvector_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/writers/test_pgvector_writer.py -------------------------------------------------------------------------------- /tests/unit/nodes/writers/test_qdrant_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/writers/test_qdrant_writer.py -------------------------------------------------------------------------------- /tests/unit/nodes/writers/test_weaviate_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/nodes/writers/test_weaviate_writer.py -------------------------------------------------------------------------------- /tests/unit/storages/test_in_memory_file_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/test_in_memory_file_storage.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/elasticsearch/test_elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/elasticsearch/test_elasticsearch.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/milvus/test_milvus_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/milvus/test_milvus_filters.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/milvus/test_milvus_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/milvus/test_milvus_storage.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/pinecone/test_pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/pinecone/test_pinecone.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/qdrant/test_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/qdrant/test_converters.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/qdrant/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/qdrant/test_filters.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/qdrant/test_qdrant_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/qdrant/test_qdrant_storage.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/test_base.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/test_utils.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/weaviate/test_weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/weaviate/test_weaviate.py -------------------------------------------------------------------------------- /tests/unit/storages/vector/weaviate/test_weaviate_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/storages/vector/weaviate/test_weaviate_tenant.py -------------------------------------------------------------------------------- /tests/unit/utils/test_json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/utils/test_json_parser.py -------------------------------------------------------------------------------- /tests/unit/utils/test_text_truncation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamiq-ai/dynamiq/HEAD/tests/unit/utils/test_text_truncation.py --------------------------------------------------------------------------------