gitextract_8xwzjunu/ ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_JA.md ├── README_ZH.md ├── builtin_tools/ │ └── aws/ │ ├── aws.py │ ├── aws.yaml │ └── tools/ │ ├── apply_guardrail.py │ ├── apply_guardrail.yaml │ ├── bedrock_retrieve.py │ ├── bedrock_retrieve.yaml │ ├── bedrock_retrieve_and_generate.py │ ├── bedrock_retrieve_and_generate.yaml │ ├── extract_frame.py │ ├── extract_frame.yaml │ ├── lambda_translate_utils.py │ ├── lambda_translate_utils.yaml │ ├── lambda_yaml_to_json.py │ ├── lambda_yaml_to_json.yaml │ ├── nova_canvas.py │ ├── nova_canvas.yaml │ ├── nova_reel.py │ ├── nova_reel.yaml │ ├── opensearch_knn_search.py │ ├── opensearch_knn_search.yaml │ ├── s3_operator.py │ ├── s3_operator.yaml │ ├── sagemaker_audio_to_text.py │ ├── sagemaker_audio_to_text.yaml │ ├── sagemaker_chinese_toxicity_detector.py │ ├── sagemaker_chinese_toxicity_detector.yaml │ ├── sagemaker_text_rerank.py │ ├── sagemaker_text_rerank.yaml │ ├── sagemaker_tts.py │ ├── sagemaker_tts.yaml │ ├── transcribe_asr.py │ └── transcribe_asr.yaml ├── dify.yaml ├── model_provider/ │ └── sagemaker/ │ ├── __init__.py │ ├── llm/ │ │ ├── __init__.py │ │ └── llm.py │ ├── rerank/ │ │ ├── __init__.py │ │ └── rerank.py │ ├── sagemaker.py │ ├── sagemaker.yaml │ ├── speech2text/ │ │ ├── __init__.py │ │ └── speech2text.py │ ├── text_embedding/ │ │ ├── __init__.py │ │ └── text_embedding.py │ └── tts/ │ ├── __init__.py │ └── tts.py ├── notebook/ │ ├── bge-embedding-m3-deploy.ipynb │ ├── bge-reranker-v2-m3-deploy.ipynb │ ├── byoc_qwen_rerank_deploy/ │ │ ├── README.md │ │ ├── app/ │ │ │ ├── inference.py │ │ │ └── serve │ │ ├── build_and_push.sh │ │ ├── deploy_and_test.ipynb │ │ └── dockerfile │ ├── cosyvoice/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build_docker.sh │ │ ├── code/ │ │ │ ├── api_server.py │ │ │ ├── inference.py │ │ │ └── serve │ │ └── cosyvoice_deploy.ipynb │ ├── cosyvoice_china_region/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build_docker.sh │ │ ├── code/ │ │ │ ├── api_server.py │ │ │ ├── inference.py │ │ │ └── serve │ │ └── cosyvoice_deploy.ipynb │ ├── deploy_lambda_yaml_to_json.md │ ├── funasr-deploy-china-region.ipynb │ ├── funasr-deploy.ipynb │ ├── how_to_deploy.md │ ├── llm_sagemaker_deploy/ │ │ ├── README.md │ │ ├── app/ │ │ │ └── serve │ │ ├── build_and_push.sh │ │ ├── deploy_and_test.ipynb │ │ ├── deploy_and_test_qwenvl.ipynb │ │ └── dockerfile │ ├── llm_sagemaker_deploy_sglang/ │ │ ├── README.md │ │ ├── app/ │ │ │ └── serve │ │ ├── build_and_push.sh │ │ ├── deploy_and_test.ipynb │ │ └── dockerfile │ ├── search_img_by_img/ │ │ └── image_search.ipynb │ └── whisper-deploy-china-region.ipynb ├── plugins/ │ ├── README.md │ ├── aws_tools/ │ │ ├── .difyignore │ │ ├── .gitignore │ │ ├── GUIDE.md │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── main.py │ │ ├── manifest.yaml │ │ ├── provider/ │ │ │ ├── aws_tools.py │ │ │ ├── aws_tools.yaml │ │ │ └── utils.py │ │ ├── requirements.txt │ │ └── tools/ │ │ ├── agentcore-browser-session-manager.py │ │ ├── agentcore-browser-session-manager.yaml │ │ ├── agentcore-browser-tool.py │ │ ├── agentcore-browser-tool.yaml │ │ ├── agentcore_code_interpreter.py │ │ ├── agentcore_code_interpreter.yaml │ │ ├── agentcore_memory.py │ │ ├── agentcore_memory.yaml │ │ ├── agentcore_memory_search.py │ │ ├── agentcore_memory_search.yaml │ │ ├── apply_guardrail.py │ │ ├── apply_guardrail.yaml │ │ ├── bedrock_retrieve.py │ │ ├── bedrock_retrieve.yaml │ │ ├── bedrock_retrieve_and_generate.py │ │ ├── bedrock_retrieve_and_generate.yaml │ │ ├── dynamodb_manager.py │ │ ├── dynamodb_manager.yaml │ │ ├── extract_frame.py │ │ ├── extract_frame.yaml │ │ ├── lambda_translate_utils.py │ │ ├── lambda_translate_utils.yaml │ │ ├── lambda_yaml_to_json.py │ │ ├── lambda_yaml_to_json.yaml │ │ ├── nova_canvas.py │ │ ├── nova_canvas.yaml │ │ ├── nova_reel.py │ │ ├── nova_reel.yaml │ │ ├── opensearch_knn_search.py │ │ ├── opensearch_knn_search.yaml │ │ ├── s3_operator.py │ │ ├── s3_operator.yaml │ │ ├── sagemaker_chinese_toxicity_detector.py │ │ ├── sagemaker_chinese_toxicity_detector.yaml │ │ ├── sagemaker_text_rerank.py │ │ ├── sagemaker_text_rerank.yaml │ │ ├── sagemaker_tts.py │ │ ├── sagemaker_tts.yaml │ │ ├── transcribe_asr.py │ │ ├── transcribe_asr.yaml │ │ ├── translation_evaluator.py │ │ └── translation_evaluator.yaml │ ├── aws_tools.difypkg │ ├── bedrock/ │ │ ├── .difyignore │ │ ├── GUIDE.md │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── main.py │ │ ├── manifest.yaml │ │ ├── models/ │ │ │ ├── llm/ │ │ │ │ ├── _position.yaml │ │ │ │ ├── ai21.yaml │ │ │ │ ├── amazon-nova.yaml │ │ │ │ ├── anthropic-claude.yaml │ │ │ │ ├── cache_config.py │ │ │ │ ├── cohere.yaml │ │ │ │ ├── deepseek.yaml │ │ │ │ ├── llm.py │ │ │ │ ├── meta-llama.yaml │ │ │ │ ├── mistral.yaml │ │ │ │ ├── model_configurations/ │ │ │ │ │ ├── claude-3-5-haiku.yaml │ │ │ │ │ ├── claude-3-5-sonnet.yaml │ │ │ │ │ ├── claude-3-7-sonnet.yaml │ │ │ │ │ ├── claude-3-haiku.yaml │ │ │ │ │ ├── claude-3-opus.yaml │ │ │ │ │ ├── claude-3-sonnet.yaml │ │ │ │ │ ├── claude-4-opus.yaml │ │ │ │ │ ├── claude-4-sonnet.yaml │ │ │ │ │ ├── cohere-command-light.yaml │ │ │ │ │ ├── cohere-command-r.yaml │ │ │ │ │ ├── cohere-command-rplus.yaml │ │ │ │ │ ├── cohere-command.yaml │ │ │ │ │ ├── nova-lite.yaml │ │ │ │ │ ├── nova-micro.yaml │ │ │ │ │ └── nova-pro.yaml │ │ │ │ ├── model_ids.py │ │ │ │ ├── openai.yaml │ │ │ │ └── qwen.yaml │ │ │ ├── rerank/ │ │ │ │ ├── amazon.rerank-v1.yaml │ │ │ │ ├── cohere.rerank-v3-5.yaml │ │ │ │ ├── model_ids.py │ │ │ │ └── rerank.py │ │ │ └── text_embedding/ │ │ │ ├── amazon.nova-2-multimodal-embeddings-v1.yaml │ │ │ ├── amazon.titan-embed-text-v1.yaml │ │ │ ├── amazon.titan-embed-text-v2.yaml │ │ │ ├── cohere.embed-english-v3.yaml │ │ │ ├── cohere.embed-multilingual-v3.yaml │ │ │ ├── model_ids.py │ │ │ └── text_embedding.py │ │ ├── provider/ │ │ │ ├── bedrock.py │ │ │ ├── bedrock.yaml │ │ │ └── get_bedrock_client.py │ │ ├── requirements.txt │ │ └── utils/ │ │ ├── __init__.py │ │ └── inference_profile.py │ ├── bedrock.difypkg │ ├── sagemaker/ │ │ ├── .difyignore │ │ ├── .gitignore │ │ ├── GUIDE.md │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── main.py │ │ ├── manifest.yaml │ │ ├── models/ │ │ │ ├── llm/ │ │ │ │ ├── __init__.py │ │ │ │ └── llm.py │ │ │ ├── rerank/ │ │ │ │ ├── __init__.py │ │ │ │ └── rerank.py │ │ │ ├── speech2text/ │ │ │ │ ├── __init__.py │ │ │ │ └── speech2text.py │ │ │ ├── text_embedding/ │ │ │ │ ├── __init__.py │ │ │ │ └── text_embedding.py │ │ │ └── tts/ │ │ │ ├── __init__.py │ │ │ └── tts.py │ │ ├── provider/ │ │ │ ├── sagemaker.py │ │ │ └── sagemaker.yaml │ │ └── requirements.txt │ └── sagemaker.difypkg └── workflow/ ├── ASR_Transcribe.yml ├── AgentCore-Memory-1.yml ├── AgentCore-Memory-2.yml ├── LLM-Finetuning-Dataflow-dify.yml ├── README.md ├── Sagemaker-Bge-Rerank.yml ├── andrew_translation_agent.yml ├── apply_guardrails.yml ├── basic_rag_sample.yml ├── bedrock_knowledge_retreival+Chatbot .yml ├── chat-with-browser.yml ├── claude3_code_translation.yml ├── claude_code_translation.yml ├── code_interpreter_demo.yml ├── edu_question_gen.yml ├── eks_upgrade_planning/ │ ├── README.md │ ├── README_zh.md │ ├── eks_cluster_info.py │ ├── eks_upgrade_planning.yml │ └── requirements.txt ├── generate_image_video.yml ├── marketing-copywriting.yml ├── mcp_server_integration.yml ├── opensearch_img_search.yml ├── rag_based_bot_with_tts.yml ├── rag_based_chatbot_for_nextcloud.yml ├── s3_rag.yml ├── sagemaker_rerank_workflow.yml ├── simple_kimi.yml ├── svg_designer.yml └── term_based_translation_workflow.yml