├── .gitignore ├── LICENSE ├── README.md ├── application ├── amqp.py ├── base_handler.py ├── download.py ├── llm_handler.py ├── progress_streamer.py ├── system_info.py └── thread.py ├── modules ├── facebook │ └── convnext │ │ ├── convnext.py │ │ └── golem.json ├── haotian-liu │ └── llava │ │ ├── golem-generator.py │ │ └── golem.json ├── hf-pipeline │ ├── asr │ │ ├── asr.py │ │ └── golem.json │ ├── image-class │ │ ├── golem.json │ │ └── image-class.py │ ├── image-to-text │ │ ├── golem.json │ │ └── image-to-text.py │ ├── object-detection │ │ ├── golem.json │ │ └── object-detection.py │ ├── visual-question-answering │ │ ├── golem.json │ │ └── visual-question-answering.py │ ├── zero-shot-image-class │ │ ├── golem.json │ │ └── zero-shot-image-class.py │ └── zero-shot-object-detection │ │ ├── golem.json │ │ └── zero-shot-object-detection.py ├── hkunlp │ └── instructor │ │ ├── golem.json │ │ └── instructor.py ├── intfloat │ └── e5-v2 │ │ ├── e5-v2.py │ │ └── golem.json ├── microsoft │ └── git-textcaps │ │ ├── git-textcaps.py │ │ └── golem.json ├── noco-ai │ ├── bark-tts │ │ ├── golem.json │ │ └── handler.py │ ├── image-generator │ │ ├── golem.json │ │ └── handler.py │ ├── llama-cpp │ │ ├── golem.json │ │ └── llama-cpp.py │ ├── llm-api │ │ ├── golem.json │ │ └── handler.py │ ├── music-generator │ │ ├── golem.json │ │ └── handler.py │ ├── sd-xl │ │ ├── golem.json │ │ └── handler.py │ ├── transformers-stream │ │ ├── golem.json │ │ └── handler.py │ └── tts-api │ │ ├── golem.json │ │ └── handler.py ├── openai │ ├── chat-api │ │ ├── chat-api.py │ │ └── golem.json │ └── dalle │ │ ├── golem.json │ │ └── handler.py ├── salesforce │ └── blip2-opt │ │ ├── blip2-opt.py │ │ └── golem.json └── turboderp │ ├── exllama │ ├── golem-generator.py │ └── golem.json │ └── exllamav2 │ ├── golem.json │ └── handler.py ├── requirements-nogpu.txt ├── requirements.txt ├── schema ├── audio-gen.jsonschema ├── audio-url.jsonschema ├── img-gen.jsonschema ├── img-url.jsonschema ├── instructor.jsonschema ├── llm.jsonschema ├── visual-qa.jsonschema ├── voice-gen.jsonschema └── zero-shot-img.jsonschema └── server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/README.md -------------------------------------------------------------------------------- /application/amqp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/application/amqp.py -------------------------------------------------------------------------------- /application/base_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/application/base_handler.py -------------------------------------------------------------------------------- /application/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/application/download.py -------------------------------------------------------------------------------- /application/llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/application/llm_handler.py -------------------------------------------------------------------------------- /application/progress_streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/application/progress_streamer.py -------------------------------------------------------------------------------- /application/system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/application/system_info.py -------------------------------------------------------------------------------- /application/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/application/thread.py -------------------------------------------------------------------------------- /modules/facebook/convnext/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/facebook/convnext/convnext.py -------------------------------------------------------------------------------- /modules/facebook/convnext/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/facebook/convnext/golem.json -------------------------------------------------------------------------------- /modules/haotian-liu/llava/golem-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/haotian-liu/llava/golem-generator.py -------------------------------------------------------------------------------- /modules/haotian-liu/llava/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/haotian-liu/llava/golem.json -------------------------------------------------------------------------------- /modules/hf-pipeline/asr/asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/asr/asr.py -------------------------------------------------------------------------------- /modules/hf-pipeline/asr/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/asr/golem.json -------------------------------------------------------------------------------- /modules/hf-pipeline/image-class/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/image-class/golem.json -------------------------------------------------------------------------------- /modules/hf-pipeline/image-class/image-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/image-class/image-class.py -------------------------------------------------------------------------------- /modules/hf-pipeline/image-to-text/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/image-to-text/golem.json -------------------------------------------------------------------------------- /modules/hf-pipeline/image-to-text/image-to-text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/image-to-text/image-to-text.py -------------------------------------------------------------------------------- /modules/hf-pipeline/object-detection/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/object-detection/golem.json -------------------------------------------------------------------------------- /modules/hf-pipeline/object-detection/object-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/object-detection/object-detection.py -------------------------------------------------------------------------------- /modules/hf-pipeline/visual-question-answering/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/visual-question-answering/golem.json -------------------------------------------------------------------------------- /modules/hf-pipeline/visual-question-answering/visual-question-answering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/visual-question-answering/visual-question-answering.py -------------------------------------------------------------------------------- /modules/hf-pipeline/zero-shot-image-class/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/zero-shot-image-class/golem.json -------------------------------------------------------------------------------- /modules/hf-pipeline/zero-shot-image-class/zero-shot-image-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/zero-shot-image-class/zero-shot-image-class.py -------------------------------------------------------------------------------- /modules/hf-pipeline/zero-shot-object-detection/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/zero-shot-object-detection/golem.json -------------------------------------------------------------------------------- /modules/hf-pipeline/zero-shot-object-detection/zero-shot-object-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hf-pipeline/zero-shot-object-detection/zero-shot-object-detection.py -------------------------------------------------------------------------------- /modules/hkunlp/instructor/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hkunlp/instructor/golem.json -------------------------------------------------------------------------------- /modules/hkunlp/instructor/instructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/hkunlp/instructor/instructor.py -------------------------------------------------------------------------------- /modules/intfloat/e5-v2/e5-v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/intfloat/e5-v2/e5-v2.py -------------------------------------------------------------------------------- /modules/intfloat/e5-v2/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/intfloat/e5-v2/golem.json -------------------------------------------------------------------------------- /modules/microsoft/git-textcaps/git-textcaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/microsoft/git-textcaps/git-textcaps.py -------------------------------------------------------------------------------- /modules/microsoft/git-textcaps/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/microsoft/git-textcaps/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/bark-tts/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/bark-tts/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/bark-tts/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/bark-tts/handler.py -------------------------------------------------------------------------------- /modules/noco-ai/image-generator/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/image-generator/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/image-generator/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/image-generator/handler.py -------------------------------------------------------------------------------- /modules/noco-ai/llama-cpp/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/llama-cpp/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/llama-cpp/llama-cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/llama-cpp/llama-cpp.py -------------------------------------------------------------------------------- /modules/noco-ai/llm-api/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/llm-api/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/llm-api/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/llm-api/handler.py -------------------------------------------------------------------------------- /modules/noco-ai/music-generator/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/music-generator/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/music-generator/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/music-generator/handler.py -------------------------------------------------------------------------------- /modules/noco-ai/sd-xl/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/sd-xl/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/sd-xl/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/sd-xl/handler.py -------------------------------------------------------------------------------- /modules/noco-ai/transformers-stream/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/transformers-stream/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/transformers-stream/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/transformers-stream/handler.py -------------------------------------------------------------------------------- /modules/noco-ai/tts-api/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/tts-api/golem.json -------------------------------------------------------------------------------- /modules/noco-ai/tts-api/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/noco-ai/tts-api/handler.py -------------------------------------------------------------------------------- /modules/openai/chat-api/chat-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/openai/chat-api/chat-api.py -------------------------------------------------------------------------------- /modules/openai/chat-api/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/openai/chat-api/golem.json -------------------------------------------------------------------------------- /modules/openai/dalle/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/openai/dalle/golem.json -------------------------------------------------------------------------------- /modules/openai/dalle/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/openai/dalle/handler.py -------------------------------------------------------------------------------- /modules/salesforce/blip2-opt/blip2-opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/salesforce/blip2-opt/blip2-opt.py -------------------------------------------------------------------------------- /modules/salesforce/blip2-opt/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/salesforce/blip2-opt/golem.json -------------------------------------------------------------------------------- /modules/turboderp/exllama/golem-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/turboderp/exllama/golem-generator.py -------------------------------------------------------------------------------- /modules/turboderp/exllama/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/turboderp/exllama/golem.json -------------------------------------------------------------------------------- /modules/turboderp/exllamav2/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/turboderp/exllamav2/golem.json -------------------------------------------------------------------------------- /modules/turboderp/exllamav2/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/modules/turboderp/exllamav2/handler.py -------------------------------------------------------------------------------- /requirements-nogpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/requirements-nogpu.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema/audio-gen.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/audio-gen.jsonschema -------------------------------------------------------------------------------- /schema/audio-url.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/audio-url.jsonschema -------------------------------------------------------------------------------- /schema/img-gen.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/img-gen.jsonschema -------------------------------------------------------------------------------- /schema/img-url.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/img-url.jsonschema -------------------------------------------------------------------------------- /schema/instructor.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/instructor.jsonschema -------------------------------------------------------------------------------- /schema/llm.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/llm.jsonschema -------------------------------------------------------------------------------- /schema/visual-qa.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/visual-qa.jsonschema -------------------------------------------------------------------------------- /schema/voice-gen.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/voice-gen.jsonschema -------------------------------------------------------------------------------- /schema/zero-shot-img.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/schema/zero-shot-img.jsonschema -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noco-ai/elemental-golem/HEAD/server.py --------------------------------------------------------------------------------