├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── microservices ├── ace_agent │ ├── 4.0 │ │ ├── README.md │ │ ├── clients │ │ │ ├── chat_client │ │ │ │ ├── chat_client.py │ │ │ │ └── requirements.txt │ │ │ ├── event_client │ │ │ │ ├── event_client.py │ │ │ │ ├── requirements.txt │ │ │ │ └── style.css │ │ │ └── speech_client │ │ │ │ ├── requirements.txt │ │ │ │ ├── setup.sh │ │ │ │ └── speech_client.py │ │ ├── deploy │ │ │ ├── docker │ │ │ │ ├── .env │ │ │ │ ├── docker-compose.yml │ │ │ │ ├── docker_init.sh │ │ │ │ └── dockerfiles │ │ │ │ │ ├── chat_engine.Dockerfile │ │ │ │ │ ├── nlp_server.Dockerfile │ │ │ │ │ └── plugin_server.Dockerfile │ │ │ ├── ucs_apps │ │ │ │ ├── chat_bot │ │ │ │ │ ├── food_ordering_bot │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ │ └── app.yaml │ │ │ │ │ ├── rag_bot │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ │ └── app.yaml │ │ │ │ │ └── stock_bot │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ │ └── app.yaml │ │ │ │ └── speech_bot │ │ │ │ │ ├── colang2_sample_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ │ │ ├── ddg_langchain_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ │ │ ├── food_ordering_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ │ │ ├── npc_bots │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ │ │ ├── rag_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ │ │ └── stock_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ └── wheel │ │ │ │ └── aceagent-4.0.0-py3-none-any.whl │ │ ├── openapi │ │ │ ├── chat_engine_openapi.json │ │ │ ├── nlp_server_openapi.json │ │ │ └── plugin_server_openapi.json │ │ ├── proto │ │ │ └── ace_agent.proto │ │ └── samples │ │ │ ├── chitchat_bot │ │ │ ├── chitchat_bot_config.yml │ │ │ ├── colang │ │ │ │ ├── bot.co │ │ │ │ ├── fallback.co │ │ │ │ ├── flows.co │ │ │ │ └── user.co │ │ │ ├── model_config.yaml │ │ │ └── speech_config.yaml │ │ │ ├── colang_2_sample_bot │ │ │ ├── actions.py │ │ │ ├── colang │ │ │ │ ├── ccl_simple_chat.co │ │ │ │ └── main.co │ │ │ ├── colang_2_sample_bot_config.yml │ │ │ ├── model_config.yaml │ │ │ └── speech_config.yaml │ │ │ ├── ddg_langchain_bot │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ ├── plugins │ │ │ │ ├── langchain_agent.py │ │ │ │ ├── requirements_dev.txt │ │ │ │ └── schemas.py │ │ │ └── speech_config.yaml │ │ │ ├── event_interface_tutorial_bot │ │ │ ├── colang │ │ │ │ ├── ccl.co │ │ │ │ └── main.co │ │ │ ├── event_interface_tutorial_bot_config.yml │ │ │ └── speech_config.yaml │ │ │ ├── food_ordering_bot │ │ │ ├── colang │ │ │ │ ├── cart.co │ │ │ │ ├── events.co │ │ │ │ ├── fallback.co │ │ │ │ ├── general.co │ │ │ │ ├── order.co │ │ │ │ └── query_menu.co │ │ │ ├── food_ordering_bot_config.yaml │ │ │ ├── model_config.yaml │ │ │ ├── plugin │ │ │ │ ├── __init__.py │ │ │ │ ├── all_gtc_items_with_diff_sizes_v3.json │ │ │ │ ├── cart_manager.py │ │ │ │ ├── data_format.py │ │ │ │ ├── menu_api.py │ │ │ │ ├── order_food.py │ │ │ │ └── requirements.txt │ │ │ ├── plugin_config.yaml │ │ │ ├── slots.yaml │ │ │ └── speech_config.yaml │ │ │ ├── npc_bots │ │ │ ├── elara │ │ │ │ ├── bot_config.yaml │ │ │ │ └── flows.co │ │ │ ├── jin │ │ │ │ ├── bot_config.yaml │ │ │ │ └── flows.co │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ ├── plugins │ │ │ │ └── prompt_former.py │ │ │ └── speech_config.yaml │ │ │ ├── nv_langchain_bot │ │ │ ├── docker-compose-milvus.yml │ │ │ ├── flows.co │ │ │ ├── langchain_bot_config.yml │ │ │ ├── plugin_config.yaml │ │ │ └── plugins │ │ │ │ ├── ingest.py │ │ │ │ ├── nv_langchain_rag.py │ │ │ │ └── requirements_dev.txt │ │ │ ├── plan_and_execute │ │ │ ├── flows.co │ │ │ ├── langgraph_bot_config.yaml │ │ │ ├── model_config.yaml │ │ │ ├── plugin │ │ │ │ ├── plan_and_execute.py │ │ │ │ ├── requirements_dev.txt │ │ │ │ └── schemas.py │ │ │ ├── plugin_config.yaml │ │ │ └── speech_config.yaml │ │ │ ├── rag_bot │ │ │ ├── flows.co │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ ├── plugins │ │ │ │ ├── rag.py │ │ │ │ └── schemas.py │ │ │ ├── rag_bot_config.yml │ │ │ └── speech_config.yaml │ │ │ ├── spanish_bot_nmt │ │ │ ├── colang │ │ │ │ ├── date.co │ │ │ │ ├── general.co │ │ │ │ ├── open_domain.co │ │ │ │ └── weather.co │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ └── spanish_bot_nmt.yml │ │ │ ├── stock_bot │ │ │ ├── cmudict_ipa.txt │ │ │ ├── colang │ │ │ │ ├── contextual_query.co │ │ │ │ ├── fallback.co │ │ │ │ ├── general.co │ │ │ │ ├── off_topic.co │ │ │ │ ├── profanity_rail.co │ │ │ │ ├── stock_faq.co │ │ │ │ └── stock_price.co │ │ │ ├── kb │ │ │ │ └── stock_faq.md │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ ├── plugins │ │ │ │ └── yahoo_fin.py │ │ │ ├── speech_config.yaml │ │ │ └── stock_bot_config.yml │ │ │ └── training │ │ │ ├── pipeline_intent_slot.yaml │ │ │ ├── pipeline_ner.yaml │ │ │ └── pipeline_text_classification.yaml │ └── 4.1 │ │ ├── README.md │ │ ├── clients │ │ ├── chat_client │ │ │ ├── chat_client.py │ │ │ └── requirements.txt │ │ ├── event_client │ │ │ ├── event_client.py │ │ │ ├── requirements.txt │ │ │ └── style.css │ │ └── speech_client │ │ │ ├── requirements.txt │ │ │ ├── setup.sh │ │ │ └── speech_client.py │ │ ├── deploy │ │ ├── docker │ │ │ ├── .env │ │ │ ├── docker-compose.yml │ │ │ ├── docker_init.sh │ │ │ └── dockerfiles │ │ │ │ ├── chat_engine.Dockerfile │ │ │ │ ├── nlp_server.Dockerfile │ │ │ │ └── plugin_server.Dockerfile │ │ ├── ucs_apps │ │ │ ├── chat_bot │ │ │ │ ├── food_ordering_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ │ ├── llm_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ │ ├── rag_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ │ └── stock_bot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app-params.yaml │ │ │ │ │ └── app.yaml │ │ │ └── speech_bot │ │ │ │ ├── ddg_langchain_bot │ │ │ │ ├── README.md │ │ │ │ ├── app-params.yaml │ │ │ │ └── app.yaml │ │ │ │ ├── food_ordering_bot │ │ │ │ ├── README.md │ │ │ │ ├── app-params.yaml │ │ │ │ └── app.yaml │ │ │ │ ├── llm_bot │ │ │ │ ├── README.md │ │ │ │ ├── app-params.yaml │ │ │ │ └── app.yaml │ │ │ │ ├── npc_bots │ │ │ │ ├── README.md │ │ │ │ ├── app-params.yaml │ │ │ │ └── app.yaml │ │ │ │ ├── rag_bot │ │ │ │ ├── README.md │ │ │ │ ├── app-params.yaml │ │ │ │ └── app.yaml │ │ │ │ └── stock_bot │ │ │ │ ├── README.md │ │ │ │ ├── app-params.yaml │ │ │ │ └── app.yaml │ │ └── wheel │ │ │ └── aceagent-4.1.0-py3-none-any.whl │ │ ├── openapi │ │ ├── chat_engine_openapi.json │ │ ├── nlp_server_openapi.json │ │ └── plugin_server_openapi.json │ │ ├── proto │ │ └── ace_agent.proto │ │ ├── samples │ │ ├── chitchat_bot │ │ │ ├── README.md │ │ │ ├── chitchat_bot_config.yml │ │ │ ├── colang │ │ │ │ └── main.co │ │ │ ├── model_config.yaml │ │ │ └── speech_config.yaml │ │ ├── colang_1.0 │ │ │ ├── chitchat_bot │ │ │ │ ├── README.md │ │ │ │ ├── chitchat_bot_config.yml │ │ │ │ ├── colang │ │ │ │ │ ├── bot.co │ │ │ │ │ ├── fallback.co │ │ │ │ │ ├── flows.co │ │ │ │ │ └── user.co │ │ │ │ ├── model_config.yaml │ │ │ │ └── speech_config.yaml │ │ │ ├── npc_bots │ │ │ │ ├── README.md │ │ │ │ ├── elara │ │ │ │ │ ├── bot_config.yaml │ │ │ │ │ └── flows.co │ │ │ │ ├── jin │ │ │ │ │ ├── bot_config.yaml │ │ │ │ │ └── flows.co │ │ │ │ ├── model_config.yaml │ │ │ │ ├── plugin_config.yaml │ │ │ │ ├── plugins │ │ │ │ │ └── prompt_former.py │ │ │ │ └── speech_config.yaml │ │ │ ├── rag_bot │ │ │ │ ├── README.md │ │ │ │ ├── flows.co │ │ │ │ ├── model_config.yaml │ │ │ │ ├── plugin_config.yaml │ │ │ │ ├── plugins │ │ │ │ │ ├── rag.py │ │ │ │ │ └── schemas.py │ │ │ │ ├── rag_bot_config.yml │ │ │ │ └── speech_config.yaml │ │ │ ├── spanish_bot_nmt │ │ │ │ ├── README.md │ │ │ │ ├── colang │ │ │ │ │ ├── date.co │ │ │ │ │ ├── general.co │ │ │ │ │ ├── open_domain.co │ │ │ │ │ └── weather.co │ │ │ │ ├── model_config.yaml │ │ │ │ ├── plugin_config.yaml │ │ │ │ └── spanish_bot_nmt.yml │ │ │ └── stock_bot │ │ │ │ ├── README.md │ │ │ │ ├── cmudict_ipa.txt │ │ │ │ ├── colang │ │ │ │ ├── contextual_query.co │ │ │ │ ├── fallback.co │ │ │ │ ├── general.co │ │ │ │ ├── off_topic.co │ │ │ │ ├── profanity_rail.co │ │ │ │ ├── stock_faq.co │ │ │ │ └── stock_price.co │ │ │ │ ├── kb │ │ │ │ └── stock_faq.md │ │ │ │ ├── model_config.yaml │ │ │ │ ├── plugin_config.yaml │ │ │ │ ├── plugins │ │ │ │ └── yahoo_fin.py │ │ │ │ ├── speech_config.yaml │ │ │ │ └── stock_bot_config.yml │ │ ├── ddg_langchain_bot │ │ │ ├── README.md │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ ├── plugins │ │ │ │ ├── langchain_agent.py │ │ │ │ ├── requirements_dev.txt │ │ │ │ └── schemas.py │ │ │ └── speech_config.yaml │ │ ├── event_interface_tutorial_bot │ │ │ ├── README.md │ │ │ ├── speech_config.yaml │ │ │ ├── step_0 │ │ │ │ ├── bot_config.yml │ │ │ │ └── main.co │ │ │ ├── step_1 │ │ │ │ ├── bot_config.yml │ │ │ │ └── main.co │ │ │ ├── step_2 │ │ │ │ ├── bot_config.yml │ │ │ │ └── main.co │ │ │ ├── step_3 │ │ │ │ ├── bot_config.yml │ │ │ │ └── main.co │ │ │ ├── step_4 │ │ │ │ ├── bot_config.yml │ │ │ │ └── main.co │ │ │ ├── step_5 │ │ │ │ ├── bot_config.yml │ │ │ │ └── main.co │ │ │ ├── step_6 │ │ │ │ ├── actions.py │ │ │ │ ├── bot_config.yml │ │ │ │ └── main.co │ │ │ └── step_7 │ │ │ │ ├── bot_config.yml │ │ │ │ ├── main.co │ │ │ │ ├── plugin │ │ │ │ └── yahoo_fin.py │ │ │ │ └── plugin_config.yaml │ │ ├── food_ordering_bot │ │ │ ├── README.md │ │ │ ├── colang │ │ │ │ ├── bug_fix.co │ │ │ │ ├── cart.co │ │ │ │ ├── general.co │ │ │ │ ├── main.co │ │ │ │ ├── order.co │ │ │ │ └── query_menu.co │ │ │ ├── food_ordering_bot_config.yaml │ │ │ ├── model_config.yaml │ │ │ ├── plugin │ │ │ │ ├── __init__.py │ │ │ │ ├── all_gtc_items_with_diff_sizes_v3.json │ │ │ │ ├── cart_manager.py │ │ │ │ ├── data_format.py │ │ │ │ ├── menu_api.py │ │ │ │ ├── order_food.py │ │ │ │ └── requirements.txt │ │ │ ├── plugin_config.yaml │ │ │ ├── slots.yaml │ │ │ └── speech_config.yaml │ │ ├── langgraph_plan_and_execute │ │ │ ├── README.md │ │ │ ├── langgraph_bot_config.yaml │ │ │ ├── main.co │ │ │ ├── model_config.yaml │ │ │ ├── plugin │ │ │ │ ├── plan_and_execute.py │ │ │ │ ├── requirements_dev.txt │ │ │ │ └── schemas.py │ │ │ ├── plugin_config.yaml │ │ │ └── speech_config.yaml │ │ ├── llm_bot │ │ │ ├── actions.py │ │ │ ├── colang │ │ │ │ ├── main.co │ │ │ │ └── speech.co │ │ │ ├── docker-compose-nim-ms.yaml │ │ │ ├── llm_bot_config.yml │ │ │ ├── model_config.yaml │ │ │ └── speech_config.yaml │ │ ├── npc_bots │ │ │ ├── README.md │ │ │ ├── elara │ │ │ │ ├── actions.py │ │ │ │ ├── bot_config.yaml │ │ │ │ ├── colang │ │ │ │ │ ├── bug_fix.co │ │ │ │ │ ├── elara.co │ │ │ │ │ └── speech.co │ │ │ │ ├── model_config.yaml │ │ │ │ ├── plugin_config.yaml │ │ │ │ └── speech_config.yaml │ │ │ ├── jin │ │ │ │ ├── actions.py │ │ │ │ ├── bot_config.yaml │ │ │ │ ├── colang │ │ │ │ │ ├── bug_fix.co │ │ │ │ │ ├── jin.co │ │ │ │ │ └── speech.co │ │ │ │ ├── model_config.yaml │ │ │ │ ├── plugin_config.yaml │ │ │ │ └── speech_config.yaml │ │ │ └── plugins │ │ │ │ ├── prompt_former.py │ │ │ │ ├── requirements.txt │ │ │ │ ├── schemas.py │ │ │ │ └── slm_responder.py │ │ ├── rag_bot │ │ │ ├── RAG │ │ │ │ ├── basic_rag │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ └── prompt.yaml │ │ │ │ ├── docker-compose-nim-ms.yaml │ │ │ │ ├── docker-compose-vectordb.yaml │ │ │ │ └── slm_rag │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ └── prompt.yaml │ │ │ ├── README.md │ │ │ ├── actions.py │ │ │ ├── colang │ │ │ │ ├── main.co │ │ │ │ └── speech.co │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ ├── plugins │ │ │ │ ├── rag.py │ │ │ │ ├── schemas.py │ │ │ │ └── utils.py │ │ │ ├── rag_bot_config.yml │ │ │ └── speech_config.yaml │ │ ├── spanish_bot │ │ │ ├── README.md │ │ │ ├── colang │ │ │ │ ├── bug_fix.co │ │ │ │ ├── date.co │ │ │ │ ├── general.co │ │ │ │ ├── main.co │ │ │ │ ├── off_topic.co │ │ │ │ ├── open_domain.co │ │ │ │ └── weather.co │ │ │ ├── plugin_config.yaml │ │ │ └── spanish_bot_config.yaml │ │ ├── spanish_bot_nmt │ │ │ ├── README.md │ │ │ ├── colang │ │ │ │ ├── bug_fix.co │ │ │ │ ├── date.co │ │ │ │ ├── general.co │ │ │ │ ├── main.co │ │ │ │ ├── off_topic.co │ │ │ │ ├── open_domain.co │ │ │ │ └── weather.co │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ └── spanish_nmt_bot_config.yaml │ │ ├── stock_bot │ │ │ ├── README.md │ │ │ ├── cmudict_ipa.txt │ │ │ ├── colang │ │ │ │ ├── bug_fix.co │ │ │ │ ├── general.co │ │ │ │ ├── main.co │ │ │ │ ├── off_topic.co │ │ │ │ ├── profanity_rail.co │ │ │ │ ├── stock_faq.co │ │ │ │ └── stock_price.co │ │ │ ├── kb │ │ │ │ └── stock_faq.md │ │ │ ├── model_config.yaml │ │ │ ├── plugin_config.yaml │ │ │ ├── plugins │ │ │ │ └── yahoo_fin.py │ │ │ ├── speech_config.yaml │ │ │ └── stock_bot_config.yml │ │ └── training │ │ │ ├── pipeline_intent_slot.yaml │ │ │ ├── pipeline_ner.yaml │ │ │ └── pipeline_text_classification.yaml │ │ └── webui │ │ ├── README.md │ │ ├── client │ │ ├── .eslintrc.cjs │ │ ├── .yarnrc.yml │ │ ├── entrypoint.js │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ │ └── env.js │ │ ├── src │ │ │ ├── components │ │ │ │ ├── App │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── AppHeader │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── BotFace │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── ConversationHistory │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── ConversationMessage │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Loading │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── TextInput │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── ToastNotices │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Toggle │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── UserSpeechInput │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ │ └── UserTextInput │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ ├── utils │ │ │ │ ├── audio-contexts.ts │ │ │ │ ├── linear-pcm-processor.worklet.js │ │ │ │ ├── useAudioPlayer.ts │ │ │ │ ├── useMicrophone.ts │ │ │ │ ├── useRealTimeVolume.ts │ │ │ │ ├── useRequestAnimationFrame.ts │ │ │ │ ├── useRerender.ts │ │ │ │ ├── useServerState.ts │ │ │ │ └── useToastNotices.ts │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ ├── vite.config.ts │ │ └── yarn.lock │ │ ├── docker-compose.yml │ │ ├── images │ │ ├── architecture_audio.png │ │ ├── architecture_bot_audio.png │ │ ├── architecture_high_level.png │ │ ├── example_task.png │ │ ├── image.png │ │ ├── screenshot_emoji_speech.png │ │ ├── screenshot_emoji_text.png │ │ ├── screenshot_speech.png │ │ └── tasks.png │ │ ├── server │ │ ├── .yarnrc.yml │ │ ├── chat-session │ │ │ ├── clients │ │ │ │ ├── GRPCClient.ts │ │ │ │ ├── HTTPClient.ts │ │ │ │ └── RedisClient.ts │ │ │ ├── logger.ts │ │ │ └── tasks │ │ │ │ ├── AbstractTask.ts │ │ │ │ ├── ChatSessionTask.ts │ │ │ │ ├── GRPCSpeechTask.test.ts │ │ │ │ ├── GRPCSpeechTask.ts │ │ │ │ ├── GRPCSpeechTranscriptionTask.test.ts │ │ │ │ ├── GRPCSpeechTranscriptionTask.ts │ │ │ │ ├── GRPCTextTask.ts │ │ │ │ ├── HTTPChatTask.ts │ │ │ │ ├── UMIMTask.ts │ │ │ │ ├── WebSocketTask.test.ts │ │ │ │ └── WebSocketTask.ts │ │ ├── config.ts │ │ ├── data │ │ │ └── emojis-all.json │ │ ├── emoji-finder │ │ │ ├── index.test.ts │ │ │ └── index.ts │ │ ├── grpc │ │ │ ├── ace_agent.proto │ │ │ ├── buf.gen.yaml │ │ │ └── gen │ │ │ │ ├── ace_agent_connect.d.ts │ │ │ │ ├── ace_agent_connect.js │ │ │ │ ├── ace_agent_pb.d.ts │ │ │ │ └── ace_agent_pb.js │ │ ├── index.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── umim │ │ │ └── umim.ts │ │ ├── utils │ │ │ ├── sleep.ts │ │ │ └── waitAbortSignal.ts │ │ └── yarn.lock │ │ └── shared │ │ ├── package.json │ │ └── types.ts └── audio_2_face_microservice │ ├── 1.0 │ ├── README.md │ ├── example_audio │ │ ├── Claire_anger.wav │ │ ├── Claire_joy_mandarin.wav │ │ ├── Claire_neutral.wav │ │ ├── Claire_outofbreath_mandarin.wav │ │ ├── Claire_sadness.wav │ │ ├── Mark_anger.wav │ │ ├── Mark_joy.wav │ │ ├── Mark_neutral.wav │ │ ├── Mark_outofbreath.wav │ │ └── Mark_sadness.wav │ ├── proto │ │ ├── README.md │ │ ├── files_to_compile.yaml │ │ ├── generate_code_from_protos.py │ │ ├── protobuf_files │ │ │ ├── nvidia_ace.a2f.v1.proto │ │ │ ├── nvidia_ace.animation_data.v1.proto │ │ │ ├── nvidia_ace.animation_id.v1.proto │ │ │ ├── nvidia_ace.audio.v1.proto │ │ │ ├── nvidia_ace.controller.v1.proto │ │ │ ├── nvidia_ace.emotion_aggregate.v1.proto │ │ │ ├── nvidia_ace.emotion_with_timecode.v1.proto │ │ │ ├── nvidia_ace.services.a2f.v1.proto │ │ │ ├── nvidia_ace.services.a2f_controller.v1.proto │ │ │ ├── nvidia_ace.services.animation_controller.v1.proto │ │ │ ├── nvidia_ace.services.animation_data.v1.proto │ │ │ └── nvidia_ace.status.v1.proto │ │ ├── requirements.txt │ │ ├── sample_wheel │ │ │ └── nvidia_ace-1.0.0-py3-none-any.whl │ │ └── setup.py │ ├── quick-start │ │ ├── README.md │ │ ├── a2f_config.yaml │ │ ├── ac_a2f_config.yaml │ │ └── docker-compose.yml │ └── scripts │ │ ├── audio2face_api_client │ │ ├── README.md │ │ ├── a2f │ │ │ └── client │ │ │ │ ├── auth.py │ │ │ │ └── service.py │ │ ├── audio │ │ │ └── sample.wav │ │ ├── config │ │ │ ├── config_claire.yml │ │ │ └── config_mark.yml │ │ ├── nim_a2f_client.py │ │ └── requirements │ │ ├── audio2face_in_animation_pipeline_validation_app │ │ ├── README.md │ │ ├── requirements.txt │ │ └── validate.py │ │ └── audio2face_microservices_interaction_app │ │ ├── README.md │ │ ├── a2f.py │ │ ├── config_claire_v1.3.yml │ │ ├── config_mark_v2.2.yml │ │ └── requirements.txt │ └── 1.2 │ ├── README.md │ ├── example_audio │ ├── Claire_anger.wav │ ├── Claire_joy_mandarin.wav │ ├── Claire_neutral.wav │ ├── Claire_outofbreath_mandarin.wav │ ├── Claire_sadness.wav │ ├── Mark_anger.wav │ ├── Mark_joy.wav │ ├── Mark_neutral.wav │ ├── Mark_outofbreath.wav │ └── Mark_sadness.wav │ ├── proto │ ├── README.md │ ├── files_to_compile.yaml │ ├── generate_code_from_protos.py │ ├── protobuf_files │ │ ├── nvidia_ace.a2f.v1.proto │ │ ├── nvidia_ace.animation_data.v1.proto │ │ ├── nvidia_ace.animation_id.v1.proto │ │ ├── nvidia_ace.audio.v1.proto │ │ ├── nvidia_ace.controller.v1.proto │ │ ├── nvidia_ace.emotion_aggregate.v1.proto │ │ ├── nvidia_ace.emotion_with_timecode.v1.proto │ │ ├── nvidia_ace.services.a2f.v1.proto │ │ ├── nvidia_ace.services.a2f_controller.v1.proto │ │ ├── nvidia_ace.services.animation_controller.v1.proto │ │ ├── nvidia_ace.services.animation_data.v1.proto │ │ └── nvidia_ace.status.v1.proto │ ├── requirements.txt │ ├── sample_wheel │ │ └── nvidia_ace-1.0.0-py3-none-any.whl │ └── setup.py │ ├── quick-start │ ├── README.md │ ├── a2f_config.yaml │ ├── ac_a2f_config.yaml │ └── docker-compose.yml │ └── scripts │ ├── audio2face_api_client │ ├── README.md │ ├── a2f │ │ └── client │ │ │ ├── auth.py │ │ │ └── service.py │ ├── audio │ │ └── sample.wav │ ├── config │ │ ├── config_claire.yml │ │ └── config_mark.yml │ ├── nim_a2f_client.py │ └── requirements │ ├── audio2face_in_animation_pipeline_validation_app │ ├── README.md │ ├── requirements.txt │ └── validate.py │ └── audio2face_microservices_interaction_app │ ├── README.md │ ├── a2f.py │ ├── config_claire_v1.3.yml │ ├── config_mark_v2.2.yml │ └── requirements.txt ├── tools ├── avatar_configurator │ └── 1.0 │ │ ├── README.md │ │ └── template_scene.zip └── ucs_tools │ └── README.md └── workflows ├── animation_pipeline └── 1.0 │ ├── README.md │ └── deploy │ └── ucs_apps │ ├── animation_pipeline.yaml │ ├── animation_pipeline_params.yaml │ └── animation_pipeline_values.yaml └── tokkio ├── 4.0 ├── README.md ├── Tokkio_example.png ├── avatar_collage.jpg ├── llm-rag │ ├── tokkio-llm-app-params.yaml │ └── tokkio-llm-app.yaml ├── qsr │ ├── tokkio-app-params.yaml │ └── tokkio-app.yaml └── scripts │ └── one-click │ ├── aws │ ├── README.md │ ├── deploy-spec │ │ ├── backend.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── deploy-template.yml │ ├── examples │ │ ├── simple-coturn-llm │ │ │ └── deploy-template.yml │ │ ├── simple-coturn-qsr │ │ │ └── deploy-template.yml │ │ ├── simple-rp-llm │ │ │ └── deploy-template.yml │ │ └── simple-rp-qsr │ │ │ └── deploy-template.yml │ ├── modules │ │ ├── aws │ │ │ ├── acm-certificate │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── alb-listener │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── alb │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── ec2 │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── keypair │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── networking │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── security-group │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ └── target-group │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── tokkio │ │ │ ├── app │ │ │ ├── alb.tf │ │ │ ├── app-instance.tf │ │ │ ├── cloudfront.tf │ │ │ ├── config.tf │ │ │ ├── config │ │ │ │ ├── install-aws-cli.sh │ │ │ │ ├── install-cnc.sh │ │ │ │ ├── install-ngc-cli.sh │ │ │ │ ├── mount-data-disk.sh │ │ │ │ ├── setup-foundational-charts.sh │ │ │ │ ├── setup-ops-components.sh │ │ │ │ ├── setup-tokkio-api.sh │ │ │ │ ├── setup-tokkio-secrets.sh │ │ │ │ ├── setup-tokkio-ui.sh │ │ │ │ ├── tokkio-env.sh.tpl │ │ │ │ └── verify-gpu-operator-ready.sh │ │ │ ├── data.tf │ │ │ ├── iam.tf │ │ │ ├── locals.tf │ │ │ ├── output.tf │ │ │ ├── route53-api.tf │ │ │ ├── route53-ops.tf │ │ │ ├── route53-ui.tf │ │ │ ├── ui-bucket.tf │ │ │ ├── user-data │ │ │ │ └── user-data.sh.tpl │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── base │ │ │ ├── bastion-instance.tf │ │ │ ├── certificates.tf │ │ │ ├── config-bucket.tf │ │ │ ├── keypair.tf │ │ │ ├── locals.tf │ │ │ ├── networking.tf │ │ │ ├── output.tf │ │ │ ├── sec-groups.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── coturn │ │ │ ├── config.tf │ │ │ ├── config │ │ │ │ ├── coturn-server-env.sh.tpl │ │ │ │ ├── install-aws-cli.sh │ │ │ │ └── setup-coturn-server.sh │ │ │ ├── coturn-instance.tf │ │ │ ├── iam.tf │ │ │ ├── locals.tf │ │ │ ├── output.tf │ │ │ ├── user-data │ │ │ │ └── user-data.sh.tpl │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── rp │ │ │ ├── config.tf │ │ │ ├── config │ │ │ ├── install-aws-cli.sh │ │ │ ├── install-cns.sh │ │ │ ├── mount-data-disk.sh │ │ │ ├── rp-env.sh.tpl │ │ │ ├── setup-rp-chart.sh │ │ │ └── setup-rp-secrets.sh │ │ │ ├── iam.tf │ │ │ ├── locals.tf │ │ │ ├── output.tf │ │ │ ├── rp-instance.tf │ │ │ ├── user-data │ │ │ └── user-data.sh.tpl │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── secrets.sh │ └── tokkio-deploy │ ├── azure │ ├── README.md │ ├── deploy-spec │ │ ├── backend.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── deploy-template.yml │ ├── examples │ │ ├── simple-coturn-llm │ │ │ └── deploy-template.yml │ │ ├── simple-coturn-qsr │ │ │ └── deploy-template.yml │ │ ├── simple-rp-llm │ │ │ └── deploy-template.yml │ │ └── simple-rp-qsr │ │ │ └── deploy-template.yml │ ├── modules │ │ ├── azure │ │ │ ├── application-gateway │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── cdn-for-static-website │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── custom-domain-for-cdn │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── dns-a-record │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── key-vault-certificate │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── key-vault │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── keypair │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── linux-virtual-machine │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── networking │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── resource-group │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── storage-account-backed-static-website │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ └── storage-account │ │ │ │ ├── main.tf │ │ │ │ ├── output.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── tokkio │ │ │ ├── app │ │ │ ├── api.tf │ │ │ ├── certificates.tf │ │ │ ├── config.tf │ │ │ ├── config │ │ │ │ ├── apply-tokkio-secrets.sh │ │ │ │ ├── install-cnc.sh │ │ │ │ ├── install-tokkio-api.sh │ │ │ │ ├── install-tokkio-ui.sh │ │ │ │ ├── mount-data-disk.sh │ │ │ │ ├── setup-foundational-charts.sh │ │ │ │ ├── setup-ops-components.sh │ │ │ │ ├── tokkio-env.sh.tpl │ │ │ │ └── verify-gpu-operator-ready.sh │ │ │ ├── locals.tf │ │ │ ├── mlops.tf │ │ │ ├── output.tf │ │ │ ├── ui.tf │ │ │ ├── user-data │ │ │ │ └── user-data.sh.tpl │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── base │ │ │ ├── bastion.tf │ │ │ ├── config.tf │ │ │ ├── dns-and-certs.tf │ │ │ ├── keypair.tf │ │ │ ├── locals.tf │ │ │ ├── networking.tf │ │ │ ├── output.tf │ │ │ ├── resource-group.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── coturn │ │ │ ├── config.tf │ │ │ ├── config │ │ │ │ ├── coturn-server-env.sh.tpl │ │ │ │ └── setup-coturn-server.sh │ │ │ ├── locals.tf │ │ │ ├── output.tf │ │ │ ├── user-data │ │ │ │ └── user-data.sh.tpl │ │ │ ├── variables.tf │ │ │ ├── versions.tf │ │ │ └── vm.tf │ │ │ └── rp │ │ │ ├── config.tf │ │ │ ├── config │ │ │ ├── apply-rp-secrets.sh │ │ │ ├── install-cns.sh │ │ │ ├── install-rp-chart.sh │ │ │ ├── mount-data-disk.sh │ │ │ └── rp-env.sh.tpl │ │ │ ├── locals.tf │ │ │ ├── output.tf │ │ │ ├── rp-vm.tf │ │ │ ├── user-data │ │ │ └── user-data.sh.tpl │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── secrets.sh │ └── tokkio-deploy │ └── gcp │ ├── README.md │ ├── deploy-spec │ ├── backend.tf │ ├── main.tf │ ├── output.tf │ ├── provider.tf │ ├── variables.tf │ └── versions.tf │ ├── deploy-template.yml │ ├── examples │ ├── simple-coturn-llm │ │ └── deploy-template.yml │ ├── simple-coturn-qsr │ │ └── deploy-template.yml │ ├── simple-rp-llm │ │ └── deploy-template.yml │ └── simple-rp-qsr │ │ └── deploy-template.yml │ ├── modules │ ├── gcp │ │ ├── compute-backend-bucket │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── compute-backend-service │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── global-load-balancer │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── instance-group-unmanaged │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── instance │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── networking │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── website-bucket │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ └── tokkio │ │ ├── app │ │ ├── api.tf │ │ ├── config.tf │ │ ├── config │ │ │ ├── install-cns.sh │ │ │ ├── install-ngc-cli.sh │ │ │ ├── mount-data-disk.sh.tpl │ │ │ ├── setup-foundational-charts.sh │ │ │ ├── setup-ops-components.sh │ │ │ ├── setup-tokkio-api.sh │ │ │ ├── setup-tokkio-secrets.sh │ │ │ ├── setup-tokkio-ui.sh │ │ │ ├── tokkio-env.sh.tpl │ │ │ └── verify-gpu-operator-ready.sh │ │ ├── dns-and-certs.tf │ │ ├── iam.tf │ │ ├── locals.tf │ │ ├── output.tf │ │ ├── ui.tf │ │ ├── user-data │ │ │ └── user-data.sh.tpl │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── base │ │ ├── bastion.tf │ │ ├── config.tf │ │ ├── locals.tf │ │ ├── networking.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── coturn │ │ ├── config.tf │ │ ├── config │ │ │ ├── coturn-server-env.sh.tpl │ │ │ └── setup-coturn-server.sh │ │ ├── iam.tf │ │ ├── instance.tf │ │ ├── locals.tf │ │ ├── output.tf │ │ ├── user-data │ │ │ └── user-data.sh.tpl │ │ ├── variables.tf │ │ └── versions.tf │ │ └── rp │ │ ├── config.tf │ │ ├── config │ │ ├── install-cns.sh │ │ ├── install-gcloud-cli.sh │ │ ├── install-rp-chart.sh │ │ ├── mount-data-disk.sh │ │ ├── rp-env.sh.tpl │ │ └── setup-rp-secrets.sh │ │ ├── iam.tf │ │ ├── locals.tf │ │ ├── output.tf │ │ ├── rp-instance.tf │ │ ├── user-data │ │ └── user-data.sh.tpl │ │ └── variables.tf │ ├── secrets.sh │ └── tokkio-deploy ├── 4.1 ├── 3-stream │ ├── config │ │ └── lp_grpc_in_udp_out_anim_tuning.json │ ├── tokkio-app-params.yaml │ └── tokkio-app.yaml ├── README.md ├── Tokkio_example.png ├── avatar_collage.jpg ├── llm-rag-ov │ ├── 1-stream │ │ ├── config │ │ │ └── lp_grpc_in_udp_out_anim_tuning.json │ │ ├── tokkio-app-params.yaml │ │ └── tokkio-app.yaml │ ├── 3-stream │ │ ├── config │ │ │ └── lp_grpc_in_udp_out_anim_tuning.json │ │ ├── tokkio-app-params.yaml │ │ └── tokkio-app.yaml │ └── 6-stream │ │ ├── config │ │ └── lp_grpc_in_udp_out_anim_tuning.json │ │ ├── tokkio-app-params.yaml │ │ └── tokkio-app.yaml ├── llm-rag-ue │ └── 3-stream │ │ ├── config │ │ └── lp_grpc_in_udp_out_anim_tuning.json │ │ ├── tokkio-app-params.yaml │ │ └── tokkio-app.yaml ├── retail │ ├── 3-stream │ │ ├── config │ │ │ └── lp_grpc_in_udp_out_anim_tuning.json │ │ ├── tokkio-app-params.yaml │ │ └── tokkio-app.yaml │ └── 6-stream │ │ ├── config │ │ └── lp_grpc_in_udp_out_anim_tuning.json │ │ ├── tokkio-app-params.yaml │ │ └── tokkio-app.yaml └── scripts │ └── one-click │ ├── aws │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ │ ├── helm-release │ │ │ ├── rproxy-override-values.yml │ │ │ ├── tokkio-app-audio-video-app.yml │ │ │ ├── tokkio-fluent-bit-override-values.yml │ │ │ └── tokkio-logging-es-override-values.yml │ │ ├── k8s-manifest │ │ │ ├── es-replicas-update-deployment.yml │ │ │ ├── logging-es-replicas-update-configmap.yml │ │ │ ├── namespace.yml │ │ │ └── platform-ingress-rule.yml │ │ └── k8s-secret │ │ │ ├── docker-config-json.yml │ │ │ ├── ngc-api-key-secret.yml │ │ │ ├── nvidia-api-key-secret.yml │ │ │ └── openai-key-secret.yml │ ├── config-template-examples │ │ ├── llm-a2f-2d-rp-3x-streams │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ │ ├── llm-ov-3d-rp-6x-streams │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ │ ├── llm-ue-3d-coturn-3x-streams │ │ │ ├── config-template.yml │ │ │ ├── my-config.env │ │ │ └── user-helm-override-values.yml │ │ └── retail-ov-3d-rp-6x-streams │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ │ ├── backend.tf │ │ ├── cloudfront.tf │ │ ├── data.tf │ │ ├── iam.tf │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── route53.tf │ │ ├── templates │ │ │ └── ansible-hosts.tpl │ │ ├── ui-bucket.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── modules │ │ └── aws │ │ │ ├── acm-certificate │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── alb-listener │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── alb │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── compute │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── networking │ │ │ ├── examples │ │ │ │ └── quickstart │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── security-group │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── target-group │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── platform-tasks.yml │ └── playbooks │ │ ├── add-sysctl-config.yml │ │ ├── app-pre-requisites.yml │ │ ├── authorize-ssh-keys.yml │ │ ├── bootstrap-cns-kubeconfig.yml │ │ ├── check-all-pods-in-namespace-up.yml │ │ ├── check-inventory.yml │ │ ├── cns-install.yml │ │ ├── cns-prepare.yml │ │ ├── cns-validate.yml │ │ ├── copy-task-config.yml │ │ ├── docker-compose.yml │ │ ├── docker-login.yml │ │ ├── empty_var_check.yml │ │ ├── get-network-interface.yml │ │ ├── helm-release.yml │ │ ├── helm-task-pre-requisites.yml │ │ ├── install-tokkio-ui-aws.yml │ │ ├── install-tokkio-ui-bm.yml │ │ ├── install-tokkio-ui-gcp.yml │ │ ├── install-tokkio-ui.yml │ │ ├── k8s-label.yml │ │ ├── k8s-manifest.yml │ │ ├── k8s-patch.yml │ │ ├── k8s-secret-check-empty-dockerconfig.yml │ │ ├── k8s-secret-check-empty-opaque.yml │ │ ├── k8s-secret-check-empty.yml │ │ ├── k8s-secret-dockerconfig.yml │ │ ├── k8s-secret-old.yml │ │ ├── k8s-secret-opaque.yml │ │ ├── k8s-secret.yml │ │ ├── k8s-taint.yml │ │ ├── k8s-task-pre-requisites.yml │ │ ├── mount-data-disk.yml │ │ ├── nvidia-container-toolkit-install.yml │ │ ├── nvidia-docker-install.yml │ │ ├── nvidia-driver-install.yml │ │ ├── output-jinja2-expression-to-file.yml │ │ ├── process-user-config.yml │ │ ├── scripts │ │ ├── coturn-setup-bm.sh │ │ ├── coturn-setup.sh │ │ ├── install-tokkio-ui-aws.sh │ │ ├── install-tokkio-ui-bm.sh │ │ ├── install-tokkio-ui-gcp.sh │ │ ├── install-tokkio-ui.sh │ │ ├── mount-data-disk-aws.sh │ │ ├── mount-data-disk-gcp.sh │ │ └── mount-data-disk.sh │ │ ├── setup-coturn-bm.yml │ │ ├── setup-coturn.yml │ │ ├── sleep.yml │ │ ├── tasks │ │ └── helm-release-prep-values.yml │ │ └── write-to-file.yml │ ├── azure │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ │ ├── helm-release │ │ │ ├── hello-release-values.yml │ │ │ ├── rproxy-override-values.yml │ │ │ ├── tokkio-app-audio-video-app.yml │ │ │ ├── tokkio-fluent-bit-override-values.yml │ │ │ └── tokkio-logging-es-override-values.yml │ │ ├── k8s-manifest │ │ │ ├── es-replicas-update-deployment.yml │ │ │ ├── logging-es-replicas-update-configmap.yml │ │ │ ├── namespace.yml │ │ │ └── platform-ingress-rule.yml │ │ └── k8s-secret │ │ │ ├── docker-config-json.yml │ │ │ ├── ngc-api-key-secret.yml │ │ │ ├── nvidia-api-key-secret.yml │ │ │ └── openai-key-secret.yml │ ├── config-template-examples │ │ ├── llm-ov-3d-rp-3x-streams │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ │ └── llm-ue-3d-coturn-3x-streams │ │ │ ├── config-template.yml │ │ │ ├── my-config.env │ │ │ └── user-helm-override-values.yml │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ │ ├── backend.tf │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── templates │ │ │ └── ansible-hosts.tpl │ │ ├── variables.tf │ │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── modules │ │ └── azure │ │ │ ├── app-gateway │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── app-security-group │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── cdn-for-static-website │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── compute │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── custom-domain-for-cdn │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── dns-a-record │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── key-vault-certificate │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── key-vault │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── networking │ │ │ ├── examples │ │ │ │ └── quickstart │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── resource-group │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── storage-account-backed-static-website │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── platform-tasks.yml │ └── playbooks │ │ ├── add-sysctl-config.yml │ │ ├── app-pre-requisites.yml │ │ ├── authorize-ssh-keys.yml │ │ ├── bootstrap-cns-kubeconfig.yml │ │ ├── check-all-pods-in-namespace-up.yml │ │ ├── check-inventory.yml │ │ ├── cns-install.yml │ │ ├── cns-prepare.yml │ │ ├── cns-validate.yml │ │ ├── copy-task-config.yml │ │ ├── docker-compose.yml │ │ ├── docker-login.yml │ │ ├── empty_var_check.yml │ │ ├── get-network-interface.yml │ │ ├── helm-release.yml │ │ ├── helm-task-pre-requisites.yml │ │ ├── install-tokkio-ui-aws.yml │ │ ├── install-tokkio-ui-bm.yml │ │ ├── install-tokkio-ui-gcp.yml │ │ ├── install-tokkio-ui.yml │ │ ├── k8s-label.yml │ │ ├── k8s-manifest.yml │ │ ├── k8s-patch.yml │ │ ├── k8s-secret-check-empty-dockerconfig.yml │ │ ├── k8s-secret-check-empty-opaque.yml │ │ ├── k8s-secret-check-empty.yml │ │ ├── k8s-secret-dockerconfig.yml │ │ ├── k8s-secret-old.yml │ │ ├── k8s-secret-opaque.yml │ │ ├── k8s-secret.yml │ │ ├── k8s-taint.yml │ │ ├── k8s-task-pre-requisites.yml │ │ ├── mount-data-disk.yml │ │ ├── nvidia-container-toolkit-install.yml │ │ ├── nvidia-docker-install.yml │ │ ├── nvidia-driver-install.yml │ │ ├── output-jinja2-expression-to-file.yml │ │ ├── process-user-config.yml │ │ ├── scripts │ │ ├── coturn-setup-bm.sh │ │ ├── coturn-setup.sh │ │ ├── install-tokkio-ui-aws.sh │ │ ├── install-tokkio-ui-bm.sh │ │ ├── install-tokkio-ui-gcp.sh │ │ ├── install-tokkio-ui.sh │ │ ├── mount-data-disk-aws.sh │ │ ├── mount-data-disk-gcp.sh │ │ └── mount-data-disk.sh │ │ ├── setup-coturn-bm.yml │ │ ├── setup-coturn.yml │ │ ├── sleep.yml │ │ ├── tasks │ │ └── helm-release-prep-values.yml │ │ └── write-to-file.yml │ ├── baremetal │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ │ ├── helm-release │ │ │ ├── rproxy-override-values.yml │ │ │ ├── tokkio-app-audio-video-app.yml │ │ │ ├── tokkio-fluent-bit-override-values.yml │ │ │ └── tokkio-logging-es-override-values.yml │ │ ├── k8s-manifest │ │ │ ├── es-replicas-update-deployment.yml │ │ │ ├── logging-es-replicas-update-configmap.yml │ │ │ └── namespace.yml │ │ └── k8s-secret │ │ │ ├── docker-config-json.yml │ │ │ ├── ngc-api-key-secret.yml │ │ │ ├── nvidia-api-key-secret.yml │ │ │ └── openai-key-secret.yml │ ├── config-template-examples │ │ └── llm-ov-3d-coturn-1x-stream │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ │ ├── backend.tf │ │ ├── locals.tf │ │ ├── outputs.tf │ │ ├── templates │ │ │ └── ansible-hosts.tpl │ │ ├── variables.tf │ │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── platform-tasks.yml │ ├── playbooks │ │ ├── add-sysctl-config.yml │ │ ├── app-pre-requisites.yml │ │ ├── authorize-ssh-keys.yml │ │ ├── bootstrap-cns-kubeconfig.yml │ │ ├── check-all-pods-in-namespace-up.yml │ │ ├── check-inventory.yml │ │ ├── cns-install.yml │ │ ├── cns-prepare.yml │ │ ├── cns-validate.yml │ │ ├── copy-task-config.yml │ │ ├── docker-compose.yml │ │ ├── docker-login.yml │ │ ├── empty_var_check.yml │ │ ├── get-network-interface.yml │ │ ├── helm-release.yml │ │ ├── helm-task-pre-requisites.yml │ │ ├── install-tokkio-ui-aws.yml │ │ ├── install-tokkio-ui-bm.yml │ │ ├── install-tokkio-ui-gcp.yml │ │ ├── install-tokkio-ui.yml │ │ ├── k8s-label.yml │ │ ├── k8s-manifest.yml │ │ ├── k8s-patch.yml │ │ ├── k8s-secret-check-empty-dockerconfig.yml │ │ ├── k8s-secret-check-empty-opaque.yml │ │ ├── k8s-secret-check-empty.yml │ │ ├── k8s-secret-dockerconfig.yml │ │ ├── k8s-secret-old.yml │ │ ├── k8s-secret-opaque.yml │ │ ├── k8s-secret.yml │ │ ├── k8s-taint.yml │ │ ├── k8s-task-pre-requisites.yml │ │ ├── mount-data-disk.yml │ │ ├── nvidia-container-toolkit-install.yml │ │ ├── nvidia-docker-install.yml │ │ ├── nvidia-driver-install.yml │ │ ├── output-jinja2-expression-to-file.yml │ │ ├── process-user-config.yml │ │ ├── scripts │ │ │ ├── coturn-setup-bm.sh │ │ │ ├── coturn-setup.sh │ │ │ ├── install-tokkio-ui-aws.sh │ │ │ ├── install-tokkio-ui-bm.sh │ │ │ ├── install-tokkio-ui-gcp.sh │ │ │ ├── install-tokkio-ui.sh │ │ │ ├── mount-data-disk-aws.sh │ │ │ ├── mount-data-disk-gcp.sh │ │ │ └── mount-data-disk.sh │ │ ├── setup-coturn-bm.yml │ │ ├── setup-coturn.yml │ │ ├── sleep.yml │ │ ├── tasks │ │ │ └── helm-release-prep-values.yml │ │ └── write-to-file.yml │ └── setup-cns-access.sh │ └── gcp │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ ├── helm-release │ │ ├── rproxy-override-values.yml │ │ ├── tokkio-app-audio-video-app.yml │ │ ├── tokkio-fluent-bit-override-values.yml │ │ └── tokkio-logging-es-override-values.yml │ ├── k8s-manifest │ │ ├── es-replicas-update-deployment.yml │ │ ├── logging-es-replicas-update-configmap.yml │ │ ├── namespace.yml │ │ └── platform-ingress-rule.yml │ └── k8s-secret │ │ ├── docker-config-json.yml │ │ ├── ngc-api-key-secret.yml │ │ ├── nvidia-api-key-secret.yml │ │ └── openai-key-secret.yml │ ├── config-template-examples │ ├── llm-ov-3d-rp-6x-streams │ │ ├── config-template.yml │ │ └── my-config.env │ └── llm-ue-3d-coturn-3x-streams │ │ ├── config-template.yml │ │ ├── my-config.env │ │ └── user-helm-override-values.yml │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ ├── backend.tf │ ├── dns-and-certs.tf │ ├── iam.tf │ ├── locals.tf │ ├── main.tf │ ├── outputs.tf │ ├── provider.tf │ ├── templates │ │ └── ansible-hosts.tpl │ ├── ui.tf │ ├── variables.tf │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── modules │ └── gcp │ │ ├── compute-backend-bucket │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── compute-backend-service │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── compute │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── firewall │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── global-load-balancer │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── instance-group-unmanaged │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── load-balancer │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── networking │ │ ├── examples │ │ │ └── quickstart-regional │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ └── website-bucket │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── platform-tasks.yml │ └── playbooks │ ├── add-sysctl-config.yml │ ├── app-pre-requisites.yml │ ├── authorize-ssh-keys.yml │ ├── bootstrap-cns-kubeconfig.yml │ ├── check-all-pods-in-namespace-up.yml │ ├── check-inventory.yml │ ├── cns-install.yml │ ├── cns-prepare.yml │ ├── cns-validate.yml │ ├── copy-task-config.yml │ ├── docker-compose.yml │ ├── docker-login.yml │ ├── empty_var_check.yml │ ├── get-network-interface.yml │ ├── helm-release.yml │ ├── helm-task-pre-requisites.yml │ ├── install-tokkio-ui-aws.yml │ ├── install-tokkio-ui-bm.yml │ ├── install-tokkio-ui-gcp.yml │ ├── install-tokkio-ui.yml │ ├── k8s-label.yml │ ├── k8s-manifest.yml │ ├── k8s-patch.yml │ ├── k8s-secret-check-empty-dockerconfig.yml │ ├── k8s-secret-check-empty-opaque.yml │ ├── k8s-secret-check-empty.yml │ ├── k8s-secret-dockerconfig.yml │ ├── k8s-secret-old.yml │ ├── k8s-secret-opaque.yml │ ├── k8s-secret.yml │ ├── k8s-taint.yml │ ├── k8s-task-pre-requisites.yml │ ├── mount-data-disk.yml │ ├── nvidia-container-toolkit-install.yml │ ├── nvidia-docker-install.yml │ ├── nvidia-driver-install.yml │ ├── output-jinja2-expression-to-file.yml │ ├── process-user-config.yml │ ├── scripts │ ├── coturn-setup-bm.sh │ ├── coturn-setup.sh │ ├── install-tokkio-ui-aws.sh │ ├── install-tokkio-ui-bm.sh │ ├── install-tokkio-ui-gcp.sh │ ├── install-tokkio-ui.sh │ ├── mount-data-disk-aws.sh │ ├── mount-data-disk-gcp.sh │ └── mount-data-disk.sh │ ├── setup-coturn-bm.yml │ ├── setup-coturn.yml │ ├── sleep.yml │ ├── tasks │ └── helm-release-prep-values.yml │ └── write-to-file.yml └── 5.0.0-ga ├── customization-notebooks ├── 00_setup_prerequisites.ipynb ├── 01_avatar_name.ipynb ├── 02_prompt_greeting.ipynb ├── 03_avatar_voice.ipynb ├── 04_add_a_frame_processor.ipynb ├── 05_grafana_dashboard.ipynb ├── 06_update_llm.ipynb ├── 07_change_tts_provider.ipynb ├── 08_enable_speculative_speech_processing.ipynb ├── 09_create_frame_processor.ipynb ├── 10_remove_a_frame_processor.ipynb ├── 11_add_config_parameters.ipynb └── pictures │ ├── ace-configurator-synced.png │ ├── ace_configurator.png │ ├── ace_configurator_download_config.png │ ├── ace_configurator_sync.png │ ├── ace_configurator_upload_successful.png │ ├── ace_controller_bot.png │ ├── ace_controller_update_config2.png │ ├── log_trace.png │ ├── loki_view.png │ ├── search_log.png │ ├── trace1.png │ ├── trace2.png │ └── upload_config.png ├── llm-rag ├── README.md ├── tokkio-1stream-no-ui │ ├── Chart.yaml │ ├── config │ │ ├── ace-controller │ │ │ └── config.yaml │ │ └── ssl │ │ │ ├── crt.pem │ │ │ └── key.pem │ ├── tokkio-app-params.yaml │ ├── tokkio-app.yaml │ └── values.yaml ├── tokkio-1stream-with-ui │ ├── Chart.yaml │ ├── config │ │ ├── ace-controller │ │ │ └── config.yaml │ │ └── ssl │ │ │ ├── crt.pem │ │ │ └── key.pem │ ├── tokkio-app-params.yaml │ ├── tokkio-app.yaml │ └── values.yaml ├── tokkio-3stream-no-ui │ ├── Chart.yaml │ ├── config │ │ ├── ace-controller │ │ │ └── config.yaml │ │ └── ssl │ │ │ ├── crt.pem │ │ │ └── key.pem │ ├── tokkio-app-params.yaml │ ├── tokkio-app.yaml │ └── values.yaml ├── tokkio-3stream-with-ui │ ├── Chart.yaml │ ├── config │ │ ├── ace-controller │ │ │ └── config.yaml │ │ └── ssl │ │ │ ├── crt.pem │ │ │ └── key.pem │ ├── tokkio-app-params.yaml │ ├── tokkio-app.yaml │ └── values.yaml ├── tokkio-6stream-no-ui │ ├── Chart.yaml │ ├── config │ │ ├── ace-controller │ │ │ └── config.yaml │ │ └── ssl │ │ │ ├── crt.pem │ │ │ └── key.pem │ ├── tokkio-app-params.yaml │ ├── tokkio-app.yaml │ └── values.yaml └── tokkio-6stream-with-ui │ ├── Chart.yaml │ ├── config │ ├── ace-controller │ │ └── config.yaml │ └── ssl │ │ ├── crt.pem │ │ └── key.pem │ ├── tokkio-app-params.yaml │ ├── tokkio-app.yaml │ └── values.yaml ├── local-dev-workflow ├── .env ├── .python-version ├── CONTRIBUTING.md ├── README.md ├── __init__.py ├── config.py ├── img │ ├── chrome_flag.png │ ├── dev_tool_troubleshot_insecure_websocket.png │ ├── dev_tool_troubleshot_nvidia_api_key.png │ └── dev_tool_troubleshot_start_not_enable.png ├── pyproject.toml ├── start_dev.py ├── third_party_oss_license.txt └── uv.lock ├── scripts ├── debug │ └── capture_debug_info.sh └── one-click │ ├── aws-lite │ ├── LICENSE │ ├── MANIFEST │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ │ ├── helm-release │ │ │ ├── local-path-provisioner-override-values.yml │ │ │ ├── rproxy-override-values.yml │ │ │ └── tokkio-app-audio-video-app.yml │ │ ├── k8s-manifest │ │ │ └── namespace.yml │ │ └── k8s-secret │ │ │ ├── docker-config-json.yml │ │ │ ├── elevenlab-key-secret.yml │ │ │ ├── ngc-api-key-secret.yml │ │ │ ├── nvidia-api-key-secret.yml │ │ │ └── openai-key-secret.yml │ ├── config-template-examples │ │ └── tokkio-3streams │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ │ ├── backend.tf │ │ ├── iam.tf │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── templates │ │ │ └── ansible-hosts.tpl │ │ ├── variables.tf │ │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── modules │ │ └── aws │ │ │ ├── compute │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── networking │ │ │ ├── examples │ │ │ │ └── quickstart │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── security-group │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── platform-tasks.yml │ ├── playbooks │ │ ├── add-sysctl-config.yml │ │ ├── app-pre-requisites.yml │ │ ├── authorize-ssh-keys.yml │ │ ├── bootstrap-cns-kubeconfig.yml │ │ ├── check-all-pods-in-namespace-up.yml │ │ ├── check-inventory.yml │ │ ├── cns-install.yml │ │ ├── cns-prepare.yml │ │ ├── cns-validate.yml │ │ ├── copy-task-config.yml │ │ ├── empty_var_check.yml │ │ ├── get-network-interface.yml │ │ ├── helm-release.yml │ │ ├── helm-task-pre-requisites.yml │ │ ├── install-tokkio-ui-aws.yml │ │ ├── k8s-label.yml │ │ ├── k8s-manifest.yml │ │ ├── k8s-patch.yml │ │ ├── k8s-secret-check-empty.yml │ │ ├── k8s-secret-old.yml │ │ ├── k8s-secret.yml │ │ ├── k8s-taint.yml │ │ ├── k8s-task-pre-requisites.yml │ │ ├── mount-data-disk.yml │ │ ├── output-jinja2-expression-to-file.yml │ │ ├── process-user-config.yml │ │ ├── scripts │ │ │ ├── coturn-setup-bm.sh │ │ │ ├── coturn-setup.sh │ │ │ ├── install-tokkio-ui-aws.sh │ │ │ ├── install-tokkio-ui-azure.sh │ │ │ ├── install-tokkio-ui-bm.sh │ │ │ ├── install-tokkio-ui-gcp.sh │ │ │ ├── mount-data-disk-aws.sh │ │ │ ├── mount-data-disk-gcp.sh │ │ │ └── mount-data-disk.sh │ │ ├── setup-coturn.yml │ │ ├── sleep.yml │ │ ├── tasks │ │ │ ├── helm-release-prep-values.yml │ │ │ ├── helm-task-pre-requisites.yml │ │ │ ├── k8s-secret-check-empty-dockerconfig.yml │ │ │ ├── k8s-secret-check-empty-opaque.yml │ │ │ ├── k8s-secret-dockerconfig.yml │ │ │ ├── k8s-secret-opaque.yml │ │ │ └── k8s-task-pre-requisites.yml │ │ └── write-to-file.yml │ ├── requirements.txt │ └── setup-cns-access.sh │ ├── aws │ ├── LICENSE │ ├── MANIFEST │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ │ ├── helm-release │ │ │ ├── local-path-provisioner-override-values.yml │ │ │ ├── rproxy-override-values.yml │ │ │ └── tokkio-app-audio-video-app.yml │ │ ├── k8s-manifest │ │ │ ├── es-replicas-update-deployment.yml │ │ │ ├── logging-es-replicas-update-configmap.yml │ │ │ ├── namespace.yml │ │ │ └── platform-ingress-rule.yml │ │ └── k8s-secret │ │ │ ├── docker-config-json.yml │ │ │ ├── elevenlab-key-secret.yml │ │ │ ├── ngc-api-key-secret.yml │ │ │ ├── nvidia-api-key-secret.yml │ │ │ └── openai-key-secret.yml │ ├── config-template-examples │ │ └── tokkio-3streams │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ │ ├── backend.tf │ │ ├── cloudfront.tf │ │ ├── data.tf │ │ ├── iam.tf │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── route53.tf │ │ ├── templates │ │ │ └── ansible-hosts.tpl │ │ ├── ui-bucket.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── modules │ │ └── aws │ │ │ ├── acm-certificate │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── alb-listener │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── alb │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── compute │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── networking │ │ │ ├── examples │ │ │ │ └── quickstart │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── security-group │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── target-group │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── platform-tasks.yml │ ├── playbooks │ │ ├── add-sysctl-config.yml │ │ ├── app-pre-requisites.yml │ │ ├── authorize-ssh-keys.yml │ │ ├── bootstrap-cns-kubeconfig.yml │ │ ├── check-all-pods-in-namespace-up.yml │ │ ├── check-inventory.yml │ │ ├── cns-install.yml │ │ ├── cns-prepare.yml │ │ ├── cns-validate.yml │ │ ├── copy-task-config.yml │ │ ├── docker-compose.yml │ │ ├── docker-login.yml │ │ ├── empty_var_check.yml │ │ ├── get-network-interface.yml │ │ ├── helm-release.yml │ │ ├── helm-task-pre-requisites.yml │ │ ├── install-tokkio-ui-aws.yml │ │ ├── k8s-label.yml │ │ ├── k8s-manifest.yml │ │ ├── k8s-patch.yml │ │ ├── k8s-secret-check-empty.yml │ │ ├── k8s-secret-old.yml │ │ ├── k8s-secret.yml │ │ ├── k8s-taint.yml │ │ ├── k8s-task-pre-requisites.yml │ │ ├── mount-data-disk.yml │ │ ├── nvidia-container-toolkit-install.yml │ │ ├── nvidia-docker-install.yml │ │ ├── nvidia-driver-install.yml │ │ ├── output-jinja2-expression-to-file.yml │ │ ├── process-user-config.yml │ │ ├── scripts │ │ │ ├── coturn-setup-bm.sh │ │ │ ├── coturn-setup.sh │ │ │ ├── install-tokkio-ui-aws.sh │ │ │ ├── install-tokkio-ui-azure.sh │ │ │ ├── install-tokkio-ui-bm.sh │ │ │ ├── install-tokkio-ui-gcp.sh │ │ │ ├── mount-data-disk-aws.sh │ │ │ ├── mount-data-disk-gcp.sh │ │ │ └── mount-data-disk.sh │ │ ├── setup-coturn.yml │ │ ├── sleep.yml │ │ ├── tasks │ │ │ ├── helm-release-prep-values.yml │ │ │ ├── helm-task-pre-requisites.yml │ │ │ ├── k8s-secret-check-empty-dockerconfig.yml │ │ │ ├── k8s-secret-check-empty-opaque.yml │ │ │ ├── k8s-secret-dockerconfig.yml │ │ │ ├── k8s-secret-opaque.yml │ │ │ └── k8s-task-pre-requisites.yml │ │ └── write-to-file.yml │ ├── requirements.txt │ └── setup-cns-access.sh │ ├── azure │ ├── LICENSE │ ├── MANIFEST │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ │ ├── helm-release │ │ │ ├── local-path-provisioner-override-values.yml │ │ │ ├── rproxy-override-values.yml │ │ │ └── tokkio-app-audio-video-app.yml │ │ ├── k8s-manifest │ │ │ └── namespace.yml │ │ └── k8s-secret │ │ │ ├── docker-config-json.yml │ │ │ ├── elevenlab-key-secret.yml │ │ │ ├── ngc-api-key-secret.yml │ │ │ ├── nvidia-api-key-secret.yml │ │ │ └── openai-key-secret.yml │ ├── config-template-examples │ │ └── tokkio-3streams │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ │ ├── backend.tf │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── templates │ │ │ └── ansible-hosts.tpl │ │ ├── variables.tf │ │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── modules │ │ └── azure │ │ │ ├── app-gateway │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── app-security-group │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── cdn-for-static-website │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── compute │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── custom-domain-for-cdn │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── dns-a-record │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── key-vault-certificate │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── key-vault │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── networking │ │ │ ├── examples │ │ │ │ └── quickstart │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── resource-group │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── storage-account-backed-static-website │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── platform-tasks.yml │ ├── playbooks │ │ ├── add-sysctl-config.yml │ │ ├── app-pre-requisites.yml │ │ ├── authorize-ssh-keys.yml │ │ ├── bootstrap-cns-kubeconfig.yml │ │ ├── check-all-pods-in-namespace-up.yml │ │ ├── check-inventory.yml │ │ ├── cns-install.yml │ │ ├── cns-prepare.yml │ │ ├── cns-validate.yml │ │ ├── copy-task-config.yml │ │ ├── docker-compose.yml │ │ ├── docker-login.yml │ │ ├── empty_var_check.yml │ │ ├── get-network-interface.yml │ │ ├── helm-release.yml │ │ ├── helm-task-pre-requisites.yml │ │ ├── install-tokkio-ui-azure.yml │ │ ├── k8s-label.yml │ │ ├── k8s-manifest.yml │ │ ├── k8s-patch.yml │ │ ├── k8s-secret-check-empty.yml │ │ ├── k8s-secret-old.yml │ │ ├── k8s-secret.yml │ │ ├── k8s-taint.yml │ │ ├── k8s-task-pre-requisites.yml │ │ ├── mount-data-disk.yml │ │ ├── nvidia-container-toolkit-install.yml │ │ ├── nvidia-docker-install.yml │ │ ├── nvidia-driver-install.yml │ │ ├── output-jinja2-expression-to-file.yml │ │ ├── process-user-config.yml │ │ ├── scripts │ │ │ ├── coturn-setup-bm.sh │ │ │ ├── coturn-setup.sh │ │ │ ├── install-tokkio-ui-aws.sh │ │ │ ├── install-tokkio-ui-azure.sh │ │ │ ├── install-tokkio-ui-bm.sh │ │ │ ├── install-tokkio-ui-gcp.sh │ │ │ ├── mount-data-disk-aws.sh │ │ │ ├── mount-data-disk-gcp.sh │ │ │ └── mount-data-disk.sh │ │ ├── setup-coturn.yml │ │ ├── sleep.yml │ │ ├── tasks │ │ │ ├── helm-release-prep-values.yml │ │ │ ├── helm-task-pre-requisites.yml │ │ │ ├── k8s-secret-check-empty-dockerconfig.yml │ │ │ ├── k8s-secret-check-empty-opaque.yml │ │ │ ├── k8s-secret-dockerconfig.yml │ │ │ ├── k8s-secret-opaque.yml │ │ │ └── k8s-task-pre-requisites.yml │ │ └── write-to-file.yml │ ├── requirements.txt │ └── setup-cns-access.sh │ ├── baremetal │ ├── LICENSE │ ├── MANIFEST │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ │ ├── helm-release │ │ │ ├── local-path-provisioner-override-values.yml │ │ │ └── tokkio-app-audio-video-app.yml │ │ ├── k8s-manifest │ │ │ └── namespace.yml │ │ └── k8s-secret │ │ │ ├── docker-config-json.yml │ │ │ ├── elevenlab-key-secret.yml │ │ │ ├── ngc-api-key-secret.yml │ │ │ ├── nvidia-api-key-secret.yml │ │ │ └── openai-key-secret.yml │ ├── config-template-examples │ │ └── tokkio-1stream │ │ │ ├── config-template.yml │ │ │ └── my-config.env │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ │ ├── backend.tf │ │ ├── locals.tf │ │ ├── outputs.tf │ │ ├── templates │ │ │ └── ansible-hosts.tpl │ │ ├── variables.tf │ │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── platform-tasks.yml │ ├── playbooks │ │ ├── add-sysctl-config.yml │ │ ├── app-pre-requisites.yml │ │ ├── authorize-ssh-keys.yml │ │ ├── bootstrap-cns-kubeconfig.yml │ │ ├── check-all-pods-in-namespace-up.yml │ │ ├── check-inventory.yml │ │ ├── cns-install.yml │ │ ├── cns-prepare.yml │ │ ├── cns-validate.yml │ │ ├── copy-task-config.yml │ │ ├── empty_var_check.yml │ │ ├── get-network-interface.yml │ │ ├── helm-release.yml │ │ ├── helm-task-pre-requisites.yml │ │ ├── install-tokkio-ui-bm.yml │ │ ├── k8s-label.yml │ │ ├── k8s-manifest.yml │ │ ├── k8s-patch.yml │ │ ├── k8s-secret-check-empty.yml │ │ ├── k8s-secret-old.yml │ │ ├── k8s-secret.yml │ │ ├── k8s-taint.yml │ │ ├── k8s-task-pre-requisites.yml │ │ ├── mount-data-disk.yml │ │ ├── output-jinja2-expression-to-file.yml │ │ ├── process-user-config.yml │ │ ├── scripts │ │ │ ├── coturn-setup-bm.sh │ │ │ ├── coturn-setup.sh │ │ │ ├── install-tokkio-ui-aws.sh │ │ │ ├── install-tokkio-ui-azure.sh │ │ │ ├── install-tokkio-ui-bm.sh │ │ │ ├── install-tokkio-ui-gcp.sh │ │ │ ├── mount-data-disk-aws.sh │ │ │ ├── mount-data-disk-gcp.sh │ │ │ └── mount-data-disk.sh │ │ ├── setup-coturn-bm.yml │ │ ├── setup-coturn.yml │ │ ├── sleep.yml │ │ ├── tasks │ │ │ ├── helm-release-prep-values.yml │ │ │ ├── helm-task-pre-requisites.yml │ │ │ ├── k8s-secret-check-empty-dockerconfig.yml │ │ │ ├── k8s-secret-check-empty-opaque.yml │ │ │ ├── k8s-secret-dockerconfig.yml │ │ │ ├── k8s-secret-opaque.yml │ │ │ └── k8s-task-pre-requisites.yml │ │ └── write-to-file.yml │ ├── requirements.txt │ └── setup-cns-access.sh │ └── gcp │ ├── MANIFEST │ ├── ansible-requirements.yml │ ├── app-tasks.yml │ ├── config-files │ ├── helm-release │ │ ├── local-path-provisioner-override-values.yml │ │ ├── rproxy-override-values.yml │ │ └── tokkio-app-audio-video-app.yml │ ├── k8s-manifest │ │ ├── es-replicas-update-deployment.yml │ │ ├── logging-es-replicas-update-configmap.yml │ │ ├── namespace.yml │ │ └── platform-ingress-rule.yml │ └── k8s-secret │ │ ├── docker-config-json.yml │ │ ├── elevenlab-key-secret.yml │ │ ├── ngc-api-key-secret.yml │ │ ├── nvidia-api-key-secret.yml │ │ └── openai-key-secret.yml │ ├── config-template-examples │ └── tokkio-3streams │ │ ├── config-template.yml │ │ └── my-config.env │ ├── config-template.yml │ ├── envbuild.sh │ ├── iac-ref │ ├── backend.tf │ ├── dns-and-certs.tf │ ├── iam.tf │ ├── locals.tf │ ├── main.tf │ ├── outputs.tf │ ├── provider.tf │ ├── templates │ │ └── ansible-hosts.tpl │ ├── ui.tf │ ├── variables.tf │ └── versions.tf │ ├── infra-tasks.yml │ ├── install-pre-requisites.sh │ ├── modules │ └── gcp │ │ ├── compute-backend-bucket │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── compute-backend-service │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── compute │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── firewall │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── global-load-balancer │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── instance-group-unmanaged │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── load-balancer │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── networking │ │ ├── examples │ │ │ └── quickstart-regional │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ └── website-bucket │ │ ├── main.tf │ │ ├── output.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── platform-tasks.yml │ ├── playbooks │ ├── add-sysctl-config.yml │ ├── app-pre-requisites.yml │ ├── authorize-ssh-keys.yml │ ├── bootstrap-cns-kubeconfig.yml │ ├── check-all-pods-in-namespace-up.yml │ ├── check-inventory.yml │ ├── cns-install.yml │ ├── cns-prepare.yml │ ├── cns-validate.yml │ ├── copy-task-config.yml │ ├── docker-compose.yml │ ├── docker-login.yml │ ├── empty_var_check.yml │ ├── get-network-interface.yml │ ├── helm-release.yml │ ├── helm-task-pre-requisites.yml │ ├── install-tokkio-ui-gcp.yml │ ├── k8s-label.yml │ ├── k8s-manifest.yml │ ├── k8s-patch.yml │ ├── k8s-secret-check-empty.yml │ ├── k8s-secret-old.yml │ ├── k8s-secret.yml │ ├── k8s-taint.yml │ ├── k8s-task-pre-requisites.yml │ ├── mount-data-disk.yml │ ├── nvidia-container-toolkit-install.yml │ ├── nvidia-docker-install.yml │ ├── nvidia-driver-install.yml │ ├── output-jinja2-expression-to-file.yml │ ├── process-user-config.yml │ ├── scripts │ │ ├── coturn-setup-bm.sh │ │ ├── coturn-setup.sh │ │ ├── install-tokkio-ui-aws.sh │ │ ├── install-tokkio-ui-azure.sh │ │ ├── install-tokkio-ui-bm.sh │ │ ├── install-tokkio-ui-gcp.sh │ │ ├── mount-data-disk-aws.sh │ │ ├── mount-data-disk-gcp.sh │ │ └── mount-data-disk.sh │ ├── setup-coturn.yml │ ├── sleep.yml │ ├── tasks │ │ ├── helm-release-prep-values.yml │ │ ├── helm-task-pre-requisites.yml │ │ ├── k8s-secret-check-empty-dockerconfig.yml │ │ ├── k8s-secret-check-empty-opaque.yml │ │ ├── k8s-secret-dockerconfig.yml │ │ ├── k8s-secret-opaque.yml │ │ └── k8s-task-pre-requisites.yml │ └── write-to-file.yml │ ├── requirements.txt │ └── setup-cns-access.sh └── src ├── audio2face-3d-tuning ├── bot.py └── tuningtools.py └── llm-rag ├── .dockerignore ├── Dockerfile ├── LICENSE ├── configs └── config.yaml ├── entrypoint.sh ├── pyproject.toml ├── src ├── __init__.py ├── bot.py ├── config.py ├── otel.py ├── rag_multimodal_response_processor.py ├── serializer.py ├── tokkio_llm.py └── tokkio_rag.py ├── third_party_oss_license.txt └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/clients/chat_client/chat_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/clients/chat_client/chat_client.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/clients/chat_client/requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp==3.9.5 -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/clients/event_client/event_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/clients/event_client/event_client.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/clients/event_client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/clients/event_client/requirements.txt -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/clients/event_client/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/clients/event_client/style.css -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/clients/speech_client/requirements.txt: -------------------------------------------------------------------------------- 1 | grpcio-tools -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/clients/speech_client/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/clients/speech_client/setup.sh -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/clients/speech_client/speech_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/clients/speech_client/speech_client.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/docker/.env -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/docker/docker-compose.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/docker/docker_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/docker/docker_init.sh -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/chat_bot/rag_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/chat_bot/rag_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/chat_bot/rag_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/chat_bot/rag_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/chat_bot/stock_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/chat_bot/stock_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/chat_bot/stock_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/chat_bot/stock_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/npc_bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/npc_bots/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/npc_bots/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/npc_bots/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/rag_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/rag_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/rag_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/rag_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/stock_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/ucs_apps/speech_bot/stock_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/deploy/wheel/aceagent-4.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/deploy/wheel/aceagent-4.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/openapi/chat_engine_openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/openapi/chat_engine_openapi.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/openapi/nlp_server_openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/openapi/nlp_server_openapi.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/openapi/plugin_server_openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/openapi/plugin_server_openapi.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/proto/ace_agent.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/proto/ace_agent.proto -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/chitchat_bot/chitchat_bot_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/chitchat_bot/chitchat_bot_config.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/chitchat_bot/colang/bot.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/chitchat_bot/colang/bot.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/chitchat_bot/colang/fallback.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/chitchat_bot/colang/fallback.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/chitchat_bot/colang/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/chitchat_bot/colang/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/chitchat_bot/colang/user.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/chitchat_bot/colang/user.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/chitchat_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/chitchat_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/chitchat_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/chitchat_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/colang_2_sample_bot/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/colang_2_sample_bot/actions.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/colang_2_sample_bot/colang/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/colang_2_sample_bot/colang/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/colang_2_sample_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/colang_2_sample_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/ddg_langchain_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/ddg_langchain_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/ddg_langchain_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/ddg_langchain_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/ddg_langchain_bot/plugins/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/ddg_langchain_bot/plugins/schemas.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/ddg_langchain_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/ddg_langchain_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/colang/cart.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/colang/cart.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/colang/events.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/colang/events.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/colang/fallback.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/colang/fallback.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/colang/general.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/colang/general.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/colang/order.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/colang/order.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/plugin/__init__.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/plugin/menu_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/plugin/menu_api.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/slots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/slots.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/food_ordering_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/food_ordering_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/npc_bots/elara/bot_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/npc_bots/elara/bot_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/npc_bots/elara/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/npc_bots/elara/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/npc_bots/jin/bot_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/npc_bots/jin/bot_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/npc_bots/jin/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/npc_bots/jin/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/npc_bots/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/npc_bots/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/npc_bots/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/npc_bots/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/npc_bots/plugins/prompt_former.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/npc_bots/plugins/prompt_former.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/npc_bots/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/npc_bots/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/nv_langchain_bot/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/nv_langchain_bot/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/nv_langchain_bot/langchain_bot_config.yml: -------------------------------------------------------------------------------- 1 | bot: langchain_bot 2 | 3 | models: [] 4 | 5 | streaming: True 6 | passthrough: true -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/nv_langchain_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/nv_langchain_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/nv_langchain_bot/plugins/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/nv_langchain_bot/plugins/ingest.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/plan_and_execute/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/plan_and_execute/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/plan_and_execute/langgraph_bot_config.yaml: -------------------------------------------------------------------------------- 1 | bot: langchain_bot 2 | 3 | models: [] 4 | streaming: True -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/plan_and_execute/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/plan_and_execute/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/plan_and_execute/plugin/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/plan_and_execute/plugin/schemas.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/plan_and_execute/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/plan_and_execute/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/plan_and_execute/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/plan_and_execute/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/rag_bot/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/rag_bot/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/rag_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/rag_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/rag_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/rag_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/rag_bot/plugins/rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/rag_bot/plugins/rag.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/rag_bot/plugins/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/rag_bot/plugins/schemas.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/rag_bot/rag_bot_config.yml: -------------------------------------------------------------------------------- 1 | bot: genai_rag_bot 2 | 3 | models: [] 4 | streaming: True -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/rag_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/rag_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/spanish_bot_nmt/colang/date.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/spanish_bot_nmt/colang/date.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/spanish_bot_nmt/colang/general.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/spanish_bot_nmt/colang/general.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/spanish_bot_nmt/colang/open_domain.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/spanish_bot_nmt/colang/open_domain.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/spanish_bot_nmt/colang/weather.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/spanish_bot_nmt/colang/weather.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/spanish_bot_nmt/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/spanish_bot_nmt/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/spanish_bot_nmt/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/spanish_bot_nmt/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/spanish_bot_nmt/spanish_bot_nmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/spanish_bot_nmt/spanish_bot_nmt.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/cmudict_ipa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/cmudict_ipa.txt -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/colang/contextual_query.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/colang/contextual_query.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/colang/fallback.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/colang/fallback.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/colang/general.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/colang/general.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/colang/off_topic.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/colang/off_topic.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/colang/profanity_rail.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/colang/profanity_rail.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/colang/stock_faq.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/colang/stock_faq.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/colang/stock_price.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/colang/stock_price.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/kb/stock_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/kb/stock_faq.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/plugins/yahoo_fin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/plugins/yahoo_fin.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/stock_bot/stock_bot_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/stock_bot/stock_bot_config.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/training/pipeline_intent_slot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/training/pipeline_intent_slot.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.0/samples/training/pipeline_ner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.0/samples/training/pipeline_ner.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/clients/chat_client/chat_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/clients/chat_client/chat_client.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/clients/chat_client/requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp==3.9.5 -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/clients/event_client/event_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/clients/event_client/event_client.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/clients/event_client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/clients/event_client/requirements.txt -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/clients/event_client/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/clients/event_client/style.css -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/clients/speech_client/requirements.txt: -------------------------------------------------------------------------------- 1 | grpcio-tools -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/clients/speech_client/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/clients/speech_client/setup.sh -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/clients/speech_client/speech_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/clients/speech_client/speech_client.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/docker/.env -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/docker/docker-compose.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/docker/docker_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/docker/docker_init.sh -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/llm_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/llm_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/llm_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/llm_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/rag_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/rag_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/rag_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/rag_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/stock_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/stock_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/stock_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/chat_bot/stock_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/llm_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/llm_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/llm_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/llm_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/npc_bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/npc_bots/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/npc_bots/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/npc_bots/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/rag_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/rag_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/rag_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/rag_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/stock_bot/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/ucs_apps/speech_bot/stock_bot/app.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/deploy/wheel/aceagent-4.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/deploy/wheel/aceagent-4.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/openapi/chat_engine_openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/openapi/chat_engine_openapi.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/openapi/nlp_server_openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/openapi/nlp_server_openapi.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/openapi/plugin_server_openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/openapi/plugin_server_openapi.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/proto/ace_agent.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/proto/ace_agent.proto -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/chitchat_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/chitchat_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/chitchat_bot/chitchat_bot_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/chitchat_bot/chitchat_bot_config.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/chitchat_bot/colang/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/chitchat_bot/colang/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/chitchat_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/chitchat_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/chitchat_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/chitchat_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/chitchat_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/chitchat_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/chitchat_bot/colang/bot.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/chitchat_bot/colang/bot.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/npc_bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/npc_bots/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/npc_bots/elara/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/npc_bots/elara/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/npc_bots/jin/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/npc_bots/jin/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/npc_bots/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/npc_bots/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/flows.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/flows.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/plugins/rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/plugins/rag.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/plugins/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/plugins/schemas.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/rag_bot_config.yml: -------------------------------------------------------------------------------- 1 | bot: genai_rag_bot 2 | 3 | models: [] 4 | streaming: True -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/rag_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/spanish_bot_nmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/spanish_bot_nmt/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/stock_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/stock_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/stock_bot/cmudict_ipa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/stock_bot/cmudict_ipa.txt -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/colang_1.0/stock_bot/kb/stock_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/colang_1.0/stock_bot/kb/stock_faq.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/ddg_langchain_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/ddg_langchain_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/ddg_langchain_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/ddg_langchain_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/ddg_langchain_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/ddg_langchain_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/ddg_langchain_bot/plugins/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/ddg_langchain_bot/plugins/schemas.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/ddg_langchain_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/ddg_langchain_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/colang/bug_fix.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/colang/bug_fix.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/colang/cart.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/colang/cart.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/colang/general.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/colang/general.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/colang/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/colang/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/colang/order.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/colang/order.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/plugin/__init__.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/plugin/menu_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/plugin/menu_api.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/slots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/slots.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/food_ordering_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/food_ordering_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/langgraph_plan_and_execute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/langgraph_plan_and_execute/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/langgraph_plan_and_execute/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/langgraph_plan_and_execute/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/llm_bot/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/llm_bot/actions.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/llm_bot/colang/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/llm_bot/colang/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/llm_bot/colang/speech.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/llm_bot/colang/speech.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/llm_bot/docker-compose-nim-ms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/llm_bot/docker-compose-nim-ms.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/llm_bot/llm_bot_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/llm_bot/llm_bot_config.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/llm_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/llm_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/llm_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/llm_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/elara/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/elara/actions.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/elara/bot_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/elara/bot_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/elara/colang/bug_fix.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/elara/colang/bug_fix.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/elara/colang/elara.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/elara/colang/elara.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/elara/colang/speech.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/elara/colang/speech.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/elara/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/elara/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/elara/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/elara/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/elara/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/elara/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/jin/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/jin/actions.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/jin/bot_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/jin/bot_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/jin/colang/bug_fix.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/jin/colang/bug_fix.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/jin/colang/jin.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/jin/colang/jin.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/jin/colang/speech.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/jin/colang/speech.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/jin/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/jin/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/jin/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/jin/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/jin/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/jin/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/plugins/prompt_former.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/plugins/prompt_former.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/plugins/requirements.txt: -------------------------------------------------------------------------------- 1 | openai==1.44.0 2 | -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/plugins/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/plugins/schemas.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/npc_bots/plugins/slm_responder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/npc_bots/plugins/slm_responder.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/RAG/basic_rag/prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/RAG/basic_rag/prompt.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/RAG/slm_rag/prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/RAG/slm_rag/prompt.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/actions.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/colang/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/colang/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/colang/speech.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/colang/speech.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/plugins/rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/plugins/rag.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/plugins/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/plugins/schemas.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/plugins/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/plugins/utils.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/rag_bot_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/rag_bot_config.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/rag_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/rag_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/colang/bug_fix.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/colang/bug_fix.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/colang/date.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/colang/date.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/colang/general.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/colang/general.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/colang/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/colang/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/colang/off_topic.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/colang/off_topic.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/colang/open_domain.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/colang/open_domain.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/colang/weather.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/colang/weather.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot/spanish_bot_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot/spanish_bot_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/bug_fix.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/bug_fix.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/date.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/date.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/general.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/general.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/off_topic.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/off_topic.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/open_domain.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/open_domain.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/weather.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/colang/weather.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/spanish_bot_nmt/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/spanish_bot_nmt/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/cmudict_ipa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/cmudict_ipa.txt -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/colang/bug_fix.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/colang/bug_fix.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/colang/general.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/colang/general.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/colang/main.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/colang/main.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/colang/off_topic.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/colang/off_topic.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/colang/profanity_rail.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/colang/profanity_rail.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/colang/stock_faq.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/colang/stock_faq.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/colang/stock_price.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/colang/stock_price.co -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/kb/stock_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/kb/stock_faq.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/model_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/plugin_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/plugin_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/plugins/yahoo_fin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/plugins/yahoo_fin.py -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/speech_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/speech_config.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/stock_bot/stock_bot_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/stock_bot/stock_bot_config.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/training/pipeline_intent_slot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/training/pipeline_intent_slot.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/samples/training/pipeline_ner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/samples/training/pipeline_ner.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/README.md -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/.eslintrc.cjs -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/entrypoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/entrypoint.js -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/index.html -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/package.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/public/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/public/env.js -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/components/App/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/components/App/index.css -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/components/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/components/App/index.tsx -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/components/BotFace/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/components/BotFace/index.css -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/components/BotFace/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/components/BotFace/index.tsx -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/components/Loading/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/components/Loading/index.css -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/components/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/components/Loading/index.tsx -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/components/Toggle/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/components/Toggle/index.css -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/components/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/components/Toggle/index.tsx -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/index.css -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/main.tsx -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/utils/audio-contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/utils/audio-contexts.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/utils/useAudioPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/utils/useAudioPlayer.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/utils/useMicrophone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/utils/useMicrophone.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/utils/useRealTimeVolume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/utils/useRealTimeVolume.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/utils/useRerender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/utils/useRerender.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/utils/useServerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/utils/useServerState.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/utils/useToastNotices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/src/utils/useToastNotices.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/tsconfig.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/tsconfig.node.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/vite.config.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/client/yarn.lock -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/docker-compose.yml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/architecture_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/architecture_audio.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/architecture_bot_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/architecture_bot_audio.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/architecture_high_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/architecture_high_level.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/example_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/example_task.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/image.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/screenshot_emoji_speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/screenshot_emoji_speech.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/screenshot_emoji_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/screenshot_emoji_text.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/screenshot_speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/screenshot_speech.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/images/tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/images/tasks.png -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/chat-session/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/chat-session/logger.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/chat-session/tasks/UMIMTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/chat-session/tasks/UMIMTask.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/config.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/data/emojis-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/data/emojis-all.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/emoji-finder/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/emoji-finder/index.test.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/emoji-finder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/emoji-finder/index.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/grpc/ace_agent.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/grpc/ace_agent.proto -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/grpc/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/grpc/buf.gen.yaml -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/grpc/gen/ace_agent_connect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/grpc/gen/ace_agent_connect.d.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/grpc/gen/ace_agent_connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/grpc/gen/ace_agent_connect.js -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/grpc/gen/ace_agent_pb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/grpc/gen/ace_agent_pb.d.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/grpc/gen/ace_agent_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/grpc/gen/ace_agent_pb.js -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/index.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/package.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/tsconfig.json -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/umim/umim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/umim/umim.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/utils/sleep.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/utils/waitAbortSignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/utils/waitAbortSignal.ts -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/server/yarn.lock -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/shared/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /microservices/ace_agent/4.1/webui/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/ace_agent/4.1/webui/shared/types.ts -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/README.md -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/example_audio/Mark_anger.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/example_audio/Mark_anger.wav -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/example_audio/Mark_joy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/example_audio/Mark_joy.wav -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/proto/README.md -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/proto/files_to_compile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/proto/files_to_compile.yaml -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/proto/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/proto/requirements.txt -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/proto/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/proto/setup.py -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/quick-start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/quick-start/README.md -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.0/quick-start/a2f_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.0/quick-start/a2f_config.yaml -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/README.md -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/example_audio/Mark_anger.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/example_audio/Mark_anger.wav -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/example_audio/Mark_joy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/example_audio/Mark_joy.wav -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/proto/README.md -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/proto/files_to_compile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/proto/files_to_compile.yaml -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/proto/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/proto/requirements.txt -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/proto/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/proto/setup.py -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/quick-start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/quick-start/README.md -------------------------------------------------------------------------------- /microservices/audio_2_face_microservice/1.2/quick-start/a2f_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/microservices/audio_2_face_microservice/1.2/quick-start/a2f_config.yaml -------------------------------------------------------------------------------- /tools/avatar_configurator/1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/tools/avatar_configurator/1.0/README.md -------------------------------------------------------------------------------- /tools/avatar_configurator/1.0/template_scene.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/tools/avatar_configurator/1.0/template_scene.zip -------------------------------------------------------------------------------- /tools/ucs_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/tools/ucs_tools/README.md -------------------------------------------------------------------------------- /workflows/animation_pipeline/1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/animation_pipeline/1.0/README.md -------------------------------------------------------------------------------- /workflows/animation_pipeline/1.0/deploy/ucs_apps/animation_pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/animation_pipeline/1.0/deploy/ucs_apps/animation_pipeline.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/README.md -------------------------------------------------------------------------------- /workflows/tokkio/4.0/Tokkio_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/Tokkio_example.png -------------------------------------------------------------------------------- /workflows/tokkio/4.0/avatar_collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/avatar_collage.jpg -------------------------------------------------------------------------------- /workflows/tokkio/4.0/llm-rag/tokkio-llm-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/llm-rag/tokkio-llm-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.0/llm-rag/tokkio-llm-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/llm-rag/tokkio-llm-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.0/qsr/tokkio-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/qsr/tokkio-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.0/qsr/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/qsr/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/README.md -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/deploy-spec/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/deploy-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/deploy-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb-listener/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "arn" { 3 | value = aws_lb_listener.this.arn 4 | } 5 | -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/alb/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/ec2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/ec2/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/ec2/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/ec2/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/ec2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/ec2/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/ec2/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/ec2/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/keypair/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/keypair/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/keypair/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/keypair/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/networking/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/networking/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/aws/target-group/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "arn" { 3 | value = aws_lb_target_group.this.arn 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/alb.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/config.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/data.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/app/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/base/keypair.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/base/keypair.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/base/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/base/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/base/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/base/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/coturn/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/coturn/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/config.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/modules/tokkio/rp/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/secrets.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/aws/tokkio-deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/aws/tokkio-deploy -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/README.md -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/deploy-spec/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/deploy-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/deploy-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/azure/dns-a-record/output.tf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/api.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/api.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/config.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/mlops.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/mlops.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/ui.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/app/ui.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/coturn/vm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/coturn/vm.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/rp/config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/rp/config.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/rp/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/rp/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/rp/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/rp/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/rp/rp-vm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/modules/tokkio/rp/rp-vm.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/secrets.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/azure/tokkio-deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/azure/tokkio-deploy -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/README.md -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/deploy-spec/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/deploy-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/deploy-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/compute-backend-service/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "id" { 3 | value = google_compute_backend_service.this.id 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/instance-group-unmanaged/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "id" { 3 | value = google_compute_instance_group.this.id 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/instance/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/instance/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/instance/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/instance/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/networking/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/networking/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/gcp/website-bucket/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "name" { 3 | value = google_storage_bucket.this.name 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/api.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/api.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/config.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/ui.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/ui.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/app/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/base/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/base/bastion.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/base/config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/base/config.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/base/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/base/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/base/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/base/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/coturn/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/coturn/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/config.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/modules/tokkio/rp/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/secrets.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.0/scripts/one-click/gcp/tokkio-deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.0/scripts/one-click/gcp/tokkio-deploy -------------------------------------------------------------------------------- /workflows/tokkio/4.1/3-stream/config/lp_grpc_in_udp_out_anim_tuning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/3-stream/config/lp_grpc_in_udp_out_anim_tuning.json -------------------------------------------------------------------------------- /workflows/tokkio/4.1/3-stream/tokkio-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/3-stream/tokkio-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/3-stream/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/3-stream/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/README.md -------------------------------------------------------------------------------- /workflows/tokkio/4.1/Tokkio_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/Tokkio_example.png -------------------------------------------------------------------------------- /workflows/tokkio/4.1/avatar_collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/avatar_collage.jpg -------------------------------------------------------------------------------- /workflows/tokkio/4.1/llm-rag-ov/1-stream/tokkio-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/llm-rag-ov/1-stream/tokkio-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/llm-rag-ov/1-stream/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/llm-rag-ov/1-stream/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/llm-rag-ov/3-stream/tokkio-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/llm-rag-ov/3-stream/tokkio-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/llm-rag-ov/3-stream/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/llm-rag-ov/3-stream/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/llm-rag-ov/6-stream/tokkio-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/llm-rag-ov/6-stream/tokkio-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/llm-rag-ov/6-stream/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/llm-rag-ov/6-stream/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/llm-rag-ue/3-stream/tokkio-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/llm-rag-ue/3-stream/tokkio-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/llm-rag-ue/3-stream/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/llm-rag-ue/3-stream/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/retail/3-stream/tokkio-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/retail/3-stream/tokkio-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/retail/3-stream/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/retail/3-stream/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/retail/6-stream/tokkio-app-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/retail/6-stream/tokkio-app-params.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/retail/6-stream/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/retail/6-stream/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/ansible-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/ansible-requirements.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/config-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/cloudfront.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/data.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/route53.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/ui-bucket.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/ui-bucket.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/iac-ref/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/install-pre-requisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/install-pre-requisites.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb-listener/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "arn" { 3 | value = aws_lb_listener.this.arn 4 | } 5 | -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb/output.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/alb/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/compute/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/compute/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/compute/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/compute/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/networking/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/networking/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/modules/aws/target-group/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "arn" { 3 | value = aws_lb_target_group.this.arn 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/platform-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/platform-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/check-inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/check-inventory.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/cns-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/cns-install.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/cns-prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/cns-prepare.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/cns-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/cns-validate.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/copy-task-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/copy-task-config.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/docker-compose.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/docker-login.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/docker-login.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/empty_var_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/empty_var_check.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/helm-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/helm-release.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-label.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-manifest.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-patch.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-secret-old.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-secret-old.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-secret.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-taint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/k8s-taint.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/setup-coturn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/setup-coturn.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/sleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/sleep.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/aws/playbooks/write-to-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/aws/playbooks/write-to-file.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/ansible-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/ansible-requirements.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/config-files/helm-release/hello-release-values.yml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | className: nginx -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/config-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/iac-ref/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/install-pre-requisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/install-pre-requisites.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/modules/azure/dns-a-record/output.tf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/platform-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/platform-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/cns-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/cns-install.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/cns-prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/cns-prepare.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/cns-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/cns-validate.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/docker-login.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/docker-login.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/helm-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/helm-release.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-label.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-manifest.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-patch.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-secret.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-taint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/k8s-taint.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/setup-coturn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/setup-coturn.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/azure/playbooks/sleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/azure/playbooks/sleep.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/config-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/iac-ref/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/platform-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/platform-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/playbooks/sleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/playbooks/sleep.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/baremetal/setup-cns-access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/baremetal/setup-cns-access.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/ansible-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/ansible-requirements.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/config-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/dns-and-certs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/dns-and-certs.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/ui.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/ui.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/iac-ref/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/install-pre-requisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/install-pre-requisites.sh -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/modules/gcp/compute-backend-service/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "id" { 3 | value = google_compute_backend_service.this.id 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/modules/gcp/compute/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/modules/gcp/compute/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/modules/gcp/firewall/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/modules/gcp/firewall/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/modules/gcp/instance-group-unmanaged/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "id" { 3 | value = google_compute_instance_group.this.id 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/modules/gcp/website-bucket/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "name" { 3 | value = google_storage_bucket.this.name 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/platform-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/platform-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/cns-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/cns-install.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/cns-prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/cns-prepare.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/cns-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/cns-validate.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/docker-compose.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/docker-login.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/docker-login.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/helm-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/helm-release.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-label.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-manifest.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-patch.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-secret-old.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-secret-old.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-secret.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-taint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/k8s-taint.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/setup-coturn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/setup-coturn.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/sleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/sleep.yml -------------------------------------------------------------------------------- /workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/write-to-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/4.1/scripts/one-click/gcp/playbooks/write-to-file.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/customization-notebooks/01_avatar_name.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/customization-notebooks/01_avatar_name.ipynb -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/customization-notebooks/03_avatar_voice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/customization-notebooks/03_avatar_voice.ipynb -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/customization-notebooks/06_update_llm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/customization-notebooks/06_update_llm.ipynb -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/customization-notebooks/pictures/trace1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/customization-notebooks/pictures/trace1.png -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/customization-notebooks/pictures/trace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/customization-notebooks/pictures/trace2.png -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/README.md -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-no-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-no-ui/Chart.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-no-ui/config/ace-controller/config.yaml: -------------------------------------------------------------------------------- 1 | ../../../../src/llm-rag/configs/config.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-no-ui/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-no-ui/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-no-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-no-ui/values.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-with-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-with-ui/Chart.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-with-ui/config/ace-controller/config.yaml: -------------------------------------------------------------------------------- 1 | ../../../../src/llm-rag/configs/config.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-with-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-1stream-with-ui/values.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-no-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-no-ui/Chart.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-no-ui/config/ace-controller/config.yaml: -------------------------------------------------------------------------------- 1 | ../../../../src/llm-rag/configs/config.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-no-ui/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-no-ui/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-no-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-no-ui/values.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-with-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-with-ui/Chart.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-with-ui/config/ace-controller/config.yaml: -------------------------------------------------------------------------------- 1 | ../../../../src/llm-rag/configs/config.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-with-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-3stream-with-ui/values.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-no-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-no-ui/Chart.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-no-ui/config/ace-controller/config.yaml: -------------------------------------------------------------------------------- 1 | ../../../../src/llm-rag/configs/config.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-no-ui/tokkio-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-no-ui/tokkio-app.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-no-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-no-ui/values.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-with-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-with-ui/Chart.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-with-ui/config/ace-controller/config.yaml: -------------------------------------------------------------------------------- 1 | ../../../../src/llm-rag/configs/config.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-with-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/llm-rag/tokkio-6stream-with-ui/values.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/local-dev-workflow/.env -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/local-dev-workflow/CONTRIBUTING.md -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/local-dev-workflow/README.md -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/local-dev-workflow/config.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/img/chrome_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/local-dev-workflow/img/chrome_flag.png -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/local-dev-workflow/pyproject.toml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/start_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/local-dev-workflow/start_dev.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/local-dev-workflow/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/local-dev-workflow/uv.lock -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/debug/capture_debug_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/debug/capture_debug_info.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/LICENSE -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/MANIFEST: -------------------------------------------------------------------------------- 1 | Version: 0.0.10 2 | Git-SHA: b1c9bbea66d0d7e861974144ee393ed4b04971b7 3 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/iac-ref/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/platform-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/platform-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws-lite/requirements.txt -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/LICENSE -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/MANIFEST: -------------------------------------------------------------------------------- 1 | Version: 0.0.10 2 | Git-SHA: b1c9bbea66d0d7e861974144ee393ed4b04971b7 3 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/config-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/cloudfront.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/data.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/route53.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/ui-bucket.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/ui-bucket.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/iac-ref/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/modules/aws/alb-listener/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "arn" { 3 | value = aws_lb_listener.this.arn 4 | } 5 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/modules/aws/alb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/modules/aws/alb/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/modules/aws/target-group/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "arn" { 3 | value = aws_lb_target_group.this.arn 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/platform-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/platform-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/playbooks/k8s-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/playbooks/k8s-label.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/playbooks/k8s-patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/playbooks/k8s-patch.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/playbooks/k8s-taint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/playbooks/k8s-taint.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/playbooks/sleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/playbooks/sleep.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/requirements.txt -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/aws/setup-cns-access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/aws/setup-cns-access.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/LICENSE -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/MANIFEST: -------------------------------------------------------------------------------- 1 | Version: 0.0.10 2 | Git-SHA: b1c9bbea66d0d7e861974144ee393ed4b04971b7 3 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/config-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/iac-ref/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/modules/azure/dns-a-record/output.tf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/platform-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/platform-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/playbooks/sleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/playbooks/sleep.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/requirements.txt -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/azure/setup-cns-access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/azure/setup-cns-access.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/LICENSE -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/MANIFEST: -------------------------------------------------------------------------------- 1 | Version: 0.0.10 2 | Git-SHA: b1c9bbea66d0d7e861974144ee393ed4b04971b7 3 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/baremetal/requirements.txt -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/MANIFEST: -------------------------------------------------------------------------------- 1 | Version: 0.0.10 2 | Git-SHA: b1c9bbea66d0d7e861974144ee393ed4b04971b7 3 | -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/app-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/app-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/config-template.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/envbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/envbuild.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/backend.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/iam.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/locals.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/main.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/outputs.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/provider.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/ui.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/ui.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/variables.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/iac-ref/versions.tf -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/infra-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/infra-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/modules/gcp/compute-backend-service/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "id" { 3 | value = google_compute_backend_service.this.id 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/modules/gcp/instance-group-unmanaged/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "id" { 3 | value = google_compute_instance_group.this.id 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/modules/gcp/website-bucket/output.tf: -------------------------------------------------------------------------------- 1 | 2 | output "name" { 3 | value = google_storage_bucket.this.name 4 | } -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/platform-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/platform-tasks.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/playbooks/k8s-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/playbooks/k8s-label.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/playbooks/k8s-patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/playbooks/k8s-patch.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/playbooks/k8s-taint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/playbooks/k8s-taint.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/playbooks/sleep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/playbooks/sleep.yml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/requirements.txt -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/setup-cns-access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/scripts/one-click/gcp/setup-cns-access.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/audio2face-3d-tuning/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/audio2face-3d-tuning/bot.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/audio2face-3d-tuning/tuningtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/audio2face-3d-tuning/tuningtools.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/.dockerignore -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/Dockerfile -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/LICENSE -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/configs/config.yaml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/entrypoint.sh -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/pyproject.toml -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/src/__init__.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/src/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/src/bot.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/src/config.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/src/otel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/src/otel.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/src/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/src/serializer.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/src/tokkio_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/src/tokkio_llm.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/src/tokkio_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/src/tokkio_rag.py -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/third_party_oss_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/third_party_oss_license.txt -------------------------------------------------------------------------------- /workflows/tokkio/5.0.0-ga/src/llm-rag/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/ACE/HEAD/workflows/tokkio/5.0.0-ga/src/llm-rag/uv.lock --------------------------------------------------------------------------------