├── .gitignore ├── LICENSE ├── README.md ├── README_FR.md ├── back_end ├── ai │ ├── app.py │ ├── camel │ │ ├── __init__.py │ │ ├── agents │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── chat_agent.py │ │ │ ├── critic_agent.py │ │ │ ├── deductive_reasoner_agent.py │ │ │ ├── embodied_agent.py │ │ │ ├── insight_agent.py │ │ │ ├── role_assignment_agent.py │ │ │ ├── task_agent.py │ │ │ └── tool_agents │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── hugging_face_tool_agent.py │ │ ├── configs.py │ │ ├── functions │ │ │ ├── __init__.py │ │ │ ├── data_io_functions.py │ │ │ ├── math_functions.py │ │ │ ├── openai_function.py │ │ │ ├── search_functions.py │ │ │ └── weather_functions.py │ │ ├── generators.py │ │ ├── human.py │ │ ├── memories │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── chat_history_memory.py │ │ │ ├── context_creators │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── score_based.py │ │ │ └── records.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── func_message.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── base_model.py │ │ │ ├── model_factory.py │ │ │ ├── open_source_model.py │ │ │ ├── openai_model.py │ │ │ └── stub_model.py │ │ ├── prompts │ │ │ ├── __init__.py │ │ │ ├── ai_society.py │ │ │ ├── base.py │ │ │ ├── code.py │ │ │ ├── evaluation.py │ │ │ ├── misalignment.py │ │ │ ├── prompt_templates.py │ │ │ ├── role_description_prompt_template.py │ │ │ ├── solution_extraction.py │ │ │ ├── task_prompt_template.py │ │ │ └── translation.py │ │ ├── responses │ │ │ ├── __init__.py │ │ │ └── agent_responses.py │ │ ├── societies │ │ │ ├── __init__.py │ │ │ ├── babyagi_playing.py │ │ │ └── role_playing.py │ │ ├── storages │ │ │ ├── __init__.py │ │ │ └── key_value_storages │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── in_memory.py │ │ │ │ └── json.py │ │ ├── terminators │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── response_terminator.py │ │ │ └── token_limit_terminator.py │ │ ├── types │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ └── openai_types.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── commons.py │ │ │ ├── python_interpreter.py │ │ │ └── token_counting.py │ ├── chat_record │ │ ├── chat_record_Culinary_Cooking_Classes.md │ │ ├── chat_record_Healthy_Eating_Workshop.md │ │ ├── chat_record_Indoor_Farmers_Market.md │ │ ├── chat_record_New_Year's_Day.md │ │ ├── chat_record_No_event.md │ │ ├── chat_record_Vintage_Film_Screenings.md │ │ ├── chat_record_Winter_Jazz_Nights.md │ │ └── chat_record_Winter_Sale.md │ ├── format_agent.py │ ├── multi_agent_communication_supply_chain.py │ ├── poetry.lock │ ├── pyproject.toml │ └── test_app.py └── go_routine │ ├── central_hub │ └── central_hub.go │ ├── client.go │ ├── event │ └── event.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── outlet │ └── outlet.go │ └── product │ └── product.go ├── front_end ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── RM.md │ ├── assets │ │ ├── auchan.png │ │ ├── bgm.flac │ │ ├── bread.png │ │ ├── carrefour.png │ │ ├── cheese.png │ │ ├── logo.png │ │ ├── monoprix.png │ │ ├── normal.png │ │ ├── oil.png │ │ ├── supermarket.png │ │ ├── tea.png │ │ ├── utc_logo.jpg │ │ ├── utc_logo.png │ │ └── warehouse.png │ ├── components │ │ ├── HelloWorld.vue │ │ ├── Version1.vue │ │ ├── Version2.vue │ │ └── Version3.vue │ └── main.js └── vue.config.js └── image ├── Start-button.png ├── agents.png ├── communication-ex.png ├── evaluation.png ├── micro_services.png ├── start_button.png ├── surface.png └── ui.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/README.md -------------------------------------------------------------------------------- /README_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/README_FR.md -------------------------------------------------------------------------------- /back_end/ai/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/app.py -------------------------------------------------------------------------------- /back_end/ai/camel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/base.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/chat_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/chat_agent.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/critic_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/critic_agent.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/deductive_reasoner_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/deductive_reasoner_agent.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/embodied_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/embodied_agent.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/insight_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/insight_agent.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/role_assignment_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/role_assignment_agent.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/task_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/task_agent.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/tool_agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/tool_agents/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/tool_agents/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/tool_agents/base.py -------------------------------------------------------------------------------- /back_end/ai/camel/agents/tool_agents/hugging_face_tool_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/agents/tool_agents/hugging_face_tool_agent.py -------------------------------------------------------------------------------- /back_end/ai/camel/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/configs.py -------------------------------------------------------------------------------- /back_end/ai/camel/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/functions/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/functions/data_io_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/functions/data_io_functions.py -------------------------------------------------------------------------------- /back_end/ai/camel/functions/math_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/functions/math_functions.py -------------------------------------------------------------------------------- /back_end/ai/camel/functions/openai_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/functions/openai_function.py -------------------------------------------------------------------------------- /back_end/ai/camel/functions/search_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/functions/search_functions.py -------------------------------------------------------------------------------- /back_end/ai/camel/functions/weather_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/functions/weather_functions.py -------------------------------------------------------------------------------- /back_end/ai/camel/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/generators.py -------------------------------------------------------------------------------- /back_end/ai/camel/human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/human.py -------------------------------------------------------------------------------- /back_end/ai/camel/memories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/memories/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/memories/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/memories/base.py -------------------------------------------------------------------------------- /back_end/ai/camel/memories/chat_history_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/memories/chat_history_memory.py -------------------------------------------------------------------------------- /back_end/ai/camel/memories/context_creators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/memories/context_creators/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/memories/context_creators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/memories/context_creators/base.py -------------------------------------------------------------------------------- /back_end/ai/camel/memories/context_creators/score_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/memories/context_creators/score_based.py -------------------------------------------------------------------------------- /back_end/ai/camel/memories/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/memories/records.py -------------------------------------------------------------------------------- /back_end/ai/camel/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/messages/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/messages/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/messages/base.py -------------------------------------------------------------------------------- /back_end/ai/camel/messages/func_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/messages/func_message.py -------------------------------------------------------------------------------- /back_end/ai/camel/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/models/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/models/base_model.py -------------------------------------------------------------------------------- /back_end/ai/camel/models/model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/models/model_factory.py -------------------------------------------------------------------------------- /back_end/ai/camel/models/open_source_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/models/open_source_model.py -------------------------------------------------------------------------------- /back_end/ai/camel/models/openai_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/models/openai_model.py -------------------------------------------------------------------------------- /back_end/ai/camel/models/stub_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/models/stub_model.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/ai_society.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/ai_society.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/base.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/code.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/evaluation.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/misalignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/misalignment.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/prompt_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/prompt_templates.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/role_description_prompt_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/role_description_prompt_template.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/solution_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/solution_extraction.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/task_prompt_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/task_prompt_template.py -------------------------------------------------------------------------------- /back_end/ai/camel/prompts/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/prompts/translation.py -------------------------------------------------------------------------------- /back_end/ai/camel/responses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/responses/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/responses/agent_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/responses/agent_responses.py -------------------------------------------------------------------------------- /back_end/ai/camel/societies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/societies/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/societies/babyagi_playing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/societies/babyagi_playing.py -------------------------------------------------------------------------------- /back_end/ai/camel/societies/role_playing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/societies/role_playing.py -------------------------------------------------------------------------------- /back_end/ai/camel/storages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/storages/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/storages/key_value_storages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/storages/key_value_storages/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/storages/key_value_storages/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/storages/key_value_storages/base.py -------------------------------------------------------------------------------- /back_end/ai/camel/storages/key_value_storages/in_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/storages/key_value_storages/in_memory.py -------------------------------------------------------------------------------- /back_end/ai/camel/storages/key_value_storages/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/storages/key_value_storages/json.py -------------------------------------------------------------------------------- /back_end/ai/camel/terminators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/terminators/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/terminators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/terminators/base.py -------------------------------------------------------------------------------- /back_end/ai/camel/terminators/response_terminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/terminators/response_terminator.py -------------------------------------------------------------------------------- /back_end/ai/camel/terminators/token_limit_terminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/terminators/token_limit_terminator.py -------------------------------------------------------------------------------- /back_end/ai/camel/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/types/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/types/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/types/enums.py -------------------------------------------------------------------------------- /back_end/ai/camel/types/openai_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/types/openai_types.py -------------------------------------------------------------------------------- /back_end/ai/camel/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/utils/__init__.py -------------------------------------------------------------------------------- /back_end/ai/camel/utils/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/utils/commons.py -------------------------------------------------------------------------------- /back_end/ai/camel/utils/python_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/utils/python_interpreter.py -------------------------------------------------------------------------------- /back_end/ai/camel/utils/token_counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/camel/utils/token_counting.py -------------------------------------------------------------------------------- /back_end/ai/chat_record/chat_record_Culinary_Cooking_Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/chat_record/chat_record_Culinary_Cooking_Classes.md -------------------------------------------------------------------------------- /back_end/ai/chat_record/chat_record_Healthy_Eating_Workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/chat_record/chat_record_Healthy_Eating_Workshop.md -------------------------------------------------------------------------------- /back_end/ai/chat_record/chat_record_Indoor_Farmers_Market.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/chat_record/chat_record_Indoor_Farmers_Market.md -------------------------------------------------------------------------------- /back_end/ai/chat_record/chat_record_New_Year's_Day.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/chat_record/chat_record_New_Year's_Day.md -------------------------------------------------------------------------------- /back_end/ai/chat_record/chat_record_No_event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/chat_record/chat_record_No_event.md -------------------------------------------------------------------------------- /back_end/ai/chat_record/chat_record_Vintage_Film_Screenings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/chat_record/chat_record_Vintage_Film_Screenings.md -------------------------------------------------------------------------------- /back_end/ai/chat_record/chat_record_Winter_Jazz_Nights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/chat_record/chat_record_Winter_Jazz_Nights.md -------------------------------------------------------------------------------- /back_end/ai/chat_record/chat_record_Winter_Sale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/chat_record/chat_record_Winter_Sale.md -------------------------------------------------------------------------------- /back_end/ai/format_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/format_agent.py -------------------------------------------------------------------------------- /back_end/ai/multi_agent_communication_supply_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/multi_agent_communication_supply_chain.py -------------------------------------------------------------------------------- /back_end/ai/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/poetry.lock -------------------------------------------------------------------------------- /back_end/ai/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/pyproject.toml -------------------------------------------------------------------------------- /back_end/ai/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/ai/test_app.py -------------------------------------------------------------------------------- /back_end/go_routine/central_hub/central_hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/go_routine/central_hub/central_hub.go -------------------------------------------------------------------------------- /back_end/go_routine/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/go_routine/client.go -------------------------------------------------------------------------------- /back_end/go_routine/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/go_routine/event/event.go -------------------------------------------------------------------------------- /back_end/go_routine/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/go_routine/go.mod -------------------------------------------------------------------------------- /back_end/go_routine/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/go_routine/go.sum -------------------------------------------------------------------------------- /back_end/go_routine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/go_routine/main.go -------------------------------------------------------------------------------- /back_end/go_routine/outlet/outlet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/go_routine/outlet/outlet.go -------------------------------------------------------------------------------- /back_end/go_routine/product/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/back_end/go_routine/product/product.go -------------------------------------------------------------------------------- /front_end/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/babel.config.js -------------------------------------------------------------------------------- /front_end/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/jsconfig.json -------------------------------------------------------------------------------- /front_end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/package-lock.json -------------------------------------------------------------------------------- /front_end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/package.json -------------------------------------------------------------------------------- /front_end/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/public/favicon.ico -------------------------------------------------------------------------------- /front_end/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/public/index.html -------------------------------------------------------------------------------- /front_end/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/App.vue -------------------------------------------------------------------------------- /front_end/src/RM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/RM.md -------------------------------------------------------------------------------- /front_end/src/assets/auchan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/auchan.png -------------------------------------------------------------------------------- /front_end/src/assets/bgm.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/bgm.flac -------------------------------------------------------------------------------- /front_end/src/assets/bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/bread.png -------------------------------------------------------------------------------- /front_end/src/assets/carrefour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/carrefour.png -------------------------------------------------------------------------------- /front_end/src/assets/cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/cheese.png -------------------------------------------------------------------------------- /front_end/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/logo.png -------------------------------------------------------------------------------- /front_end/src/assets/monoprix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/monoprix.png -------------------------------------------------------------------------------- /front_end/src/assets/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/normal.png -------------------------------------------------------------------------------- /front_end/src/assets/oil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/oil.png -------------------------------------------------------------------------------- /front_end/src/assets/supermarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/supermarket.png -------------------------------------------------------------------------------- /front_end/src/assets/tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/tea.png -------------------------------------------------------------------------------- /front_end/src/assets/utc_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/utc_logo.jpg -------------------------------------------------------------------------------- /front_end/src/assets/utc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/utc_logo.png -------------------------------------------------------------------------------- /front_end/src/assets/warehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/assets/warehouse.png -------------------------------------------------------------------------------- /front_end/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /front_end/src/components/Version1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/components/Version1.vue -------------------------------------------------------------------------------- /front_end/src/components/Version2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/components/Version2.vue -------------------------------------------------------------------------------- /front_end/src/components/Version3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/components/Version3.vue -------------------------------------------------------------------------------- /front_end/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/src/main.js -------------------------------------------------------------------------------- /front_end/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/front_end/vue.config.js -------------------------------------------------------------------------------- /image/Start-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/image/Start-button.png -------------------------------------------------------------------------------- /image/agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/image/agents.png -------------------------------------------------------------------------------- /image/communication-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/image/communication-ex.png -------------------------------------------------------------------------------- /image/evaluation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/image/evaluation.png -------------------------------------------------------------------------------- /image/micro_services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/image/micro_services.png -------------------------------------------------------------------------------- /image/start_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/image/start_button.png -------------------------------------------------------------------------------- /image/surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/image/surface.png -------------------------------------------------------------------------------- /image/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appointat/Responsive-AI-Clusters-in-Supply-Chain/HEAD/image/ui.png --------------------------------------------------------------------------------