├── .env.template ├── LICENSE ├── README.md ├── app.py ├── assets ├── 47bec94a.mp4 ├── ai-init.png ├── api_head.png ├── e1.jpeg ├── e2.png ├── model_head.png ├── nlsom.log ├── nlsom.png ├── nlsom.svg ├── role_play_head.png ├── ui.jpeg ├── validators-0.20.0.zip └── vqa_instance.png ├── env ├── __init__.py ├── prompt.py └── recommendation.py ├── nlsom.yaml ├── requirements.txt ├── setting.py ├── society ├── audio_recognition │ └── agent.py ├── body_reshaping │ └── agent.py ├── community.py ├── image_captioning │ └── agent.py ├── image_colorization │ └── agent.py ├── image_deblur │ └── agent.py ├── image_to_3d │ └── agent.py ├── object_detection │ └── agent.py ├── ocr │ └── agent.py ├── role_play │ └── agent.py ├── search │ └── agent.py ├── sentence_refine │ └── agent.py ├── skin_retouching │ └── agent.py ├── text_to_image │ └── agent.py ├── text_to_speech │ └── agent.py ├── text_to_video │ └── agent.py └── vqa │ └── agent.py └── utils.py /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/.env.template -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/app.py -------------------------------------------------------------------------------- /assets/47bec94a.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/47bec94a.mp4 -------------------------------------------------------------------------------- /assets/ai-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/ai-init.png -------------------------------------------------------------------------------- /assets/api_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/api_head.png -------------------------------------------------------------------------------- /assets/e1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/e1.jpeg -------------------------------------------------------------------------------- /assets/e2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/e2.png -------------------------------------------------------------------------------- /assets/model_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/model_head.png -------------------------------------------------------------------------------- /assets/nlsom.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/nlsom.log -------------------------------------------------------------------------------- /assets/nlsom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/nlsom.png -------------------------------------------------------------------------------- /assets/nlsom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/nlsom.svg -------------------------------------------------------------------------------- /assets/role_play_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/role_play_head.png -------------------------------------------------------------------------------- /assets/ui.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/ui.jpeg -------------------------------------------------------------------------------- /assets/validators-0.20.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/validators-0.20.0.zip -------------------------------------------------------------------------------- /assets/vqa_instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/assets/vqa_instance.png -------------------------------------------------------------------------------- /env/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/env/prompt.py -------------------------------------------------------------------------------- /env/recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/env/recommendation.py -------------------------------------------------------------------------------- /nlsom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/nlsom.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/requirements.txt -------------------------------------------------------------------------------- /setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/setting.py -------------------------------------------------------------------------------- /society/audio_recognition/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/audio_recognition/agent.py -------------------------------------------------------------------------------- /society/body_reshaping/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/body_reshaping/agent.py -------------------------------------------------------------------------------- /society/community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/community.py -------------------------------------------------------------------------------- /society/image_captioning/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/image_captioning/agent.py -------------------------------------------------------------------------------- /society/image_colorization/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/image_colorization/agent.py -------------------------------------------------------------------------------- /society/image_deblur/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/image_deblur/agent.py -------------------------------------------------------------------------------- /society/image_to_3d/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/image_to_3d/agent.py -------------------------------------------------------------------------------- /society/object_detection/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/object_detection/agent.py -------------------------------------------------------------------------------- /society/ocr/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/ocr/agent.py -------------------------------------------------------------------------------- /society/role_play/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/role_play/agent.py -------------------------------------------------------------------------------- /society/search/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/search/agent.py -------------------------------------------------------------------------------- /society/sentence_refine/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/sentence_refine/agent.py -------------------------------------------------------------------------------- /society/skin_retouching/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/skin_retouching/agent.py -------------------------------------------------------------------------------- /society/text_to_image/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/text_to_image/agent.py -------------------------------------------------------------------------------- /society/text_to_speech/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/text_to_speech/agent.py -------------------------------------------------------------------------------- /society/text_to_video/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/text_to_video/agent.py -------------------------------------------------------------------------------- /society/vqa/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/society/vqa/agent.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metauto-ai/NLSOM/HEAD/utils.py --------------------------------------------------------------------------------