├── .dockerignore ├── .github └── workflows │ └── docker.yaml ├── .gitignore ├── CLIP ├── MLX │ ├── .gitignore │ ├── __init__.py │ ├── clip.py │ ├── image_processor.py │ ├── model.py │ └── tokenizer.py ├── README.md ├── __init__.py ├── hftransformers_clip.py ├── mlx_clip.py └── mobile_clip.py ├── Dockerfile ├── Index ├── __init__.py ├── create_db.py ├── scan.py ├── scan_EverythingSDK.py └── scan_default.py ├── LICENSE ├── README.md ├── UI ├── CLIPPyX WebUI │ ├── README.md │ ├── index.html │ └── styles.css ├── Flow Launcher │ ├── CLIPPyX-0.1-flowlauncher.zip │ ├── README.md │ └── assets │ │ ├── basic.png │ │ ├── plugin.png │ │ └── usage.gif ├── Powertoys Run │ ├── Assets │ │ ├── CLIPPyX-powertoys.png │ │ ├── powertoys-logo.png │ │ ├── settings.png │ │ └── usage.gif │ ├── CLIPPyX Power Toys Run Plugin.zip │ ├── Community.PowerToys.Run.Plugin.CLIPPyX.csproj │ ├── Main.cs │ ├── README.md │ ├── lib │ │ ├── PowerToys.Common.UI.dll │ │ ├── PowerToys.ManagedCommon.dll │ │ ├── PowerToys.Settings.UI.Lib.dll │ │ ├── Wox.Infrastructure.dll │ │ └── Wox.Plugin.dll │ └── plugin.json ├── README.md ├── Raycast │ └── clippyx │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── assets │ │ └── CLIPPyX.png │ │ ├── metadata │ │ ├── clippyx-1.png │ │ ├── clippyx-2.png │ │ ├── clippyx-3.png │ │ └── clippyx-4.png │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── caption.tsx │ │ ├── interface.ts │ │ ├── similar.tsx │ │ └── text.tsx │ │ └── tsconfig.json └── assets │ ├── powertoys_sample.png │ └── webui.png ├── __init__.py ├── assets ├── CLIPPyX_diag.png ├── fastgif_mac.gif ├── fastgif_win.gif ├── icon.png └── logo_text.png ├── config.yaml ├── create_index.py ├── docker-compose.yaml ├── docs └── Common Issues.md ├── main.py ├── ocr_model ├── OCR.py ├── __init__.py └── ocr_mac.py ├── releasenotes.md ├── requirements-mlx.txt ├── requirements.txt ├── server.py ├── settings.py ├── settings ├── __init__.py ├── clip_manager.py ├── config_manager.py ├── directory_manager.py ├── ocr_manager.py ├── text_embed_manager.py └── tooltip.py ├── setup.py ├── static └── css │ └── style.css ├── templates └── index.html └── text_embeddings ├── README.md ├── __init__.py ├── hftransformers_embeddings.py ├── llamacpp_embeddings.py ├── mlx_embeddings.py ├── ollama_embeddings.py └── openai_api.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .idea/ 3 | .venv/ -------------------------------------------------------------------------------- /.github/workflows/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/.github/workflows/docker.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/.gitignore -------------------------------------------------------------------------------- /CLIP/MLX/.gitignore: -------------------------------------------------------------------------------- 1 | mlx_model/ 2 | -------------------------------------------------------------------------------- /CLIP/MLX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLIP/MLX/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/CLIP/MLX/clip.py -------------------------------------------------------------------------------- /CLIP/MLX/image_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/CLIP/MLX/image_processor.py -------------------------------------------------------------------------------- /CLIP/MLX/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/CLIP/MLX/model.py -------------------------------------------------------------------------------- /CLIP/MLX/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/CLIP/MLX/tokenizer.py -------------------------------------------------------------------------------- /CLIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/CLIP/README.md -------------------------------------------------------------------------------- /CLIP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLIP/hftransformers_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/CLIP/hftransformers_clip.py -------------------------------------------------------------------------------- /CLIP/mlx_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/CLIP/mlx_clip.py -------------------------------------------------------------------------------- /CLIP/mobile_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/CLIP/mobile_clip.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/Dockerfile -------------------------------------------------------------------------------- /Index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Index/create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/Index/create_db.py -------------------------------------------------------------------------------- /Index/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/Index/scan.py -------------------------------------------------------------------------------- /Index/scan_EverythingSDK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/Index/scan_EverythingSDK.py -------------------------------------------------------------------------------- /Index/scan_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/Index/scan_default.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/README.md -------------------------------------------------------------------------------- /UI/CLIPPyX WebUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/CLIPPyX WebUI/README.md -------------------------------------------------------------------------------- /UI/CLIPPyX WebUI/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/CLIPPyX WebUI/index.html -------------------------------------------------------------------------------- /UI/CLIPPyX WebUI/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/CLIPPyX WebUI/styles.css -------------------------------------------------------------------------------- /UI/Flow Launcher/CLIPPyX-0.1-flowlauncher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Flow Launcher/CLIPPyX-0.1-flowlauncher.zip -------------------------------------------------------------------------------- /UI/Flow Launcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Flow Launcher/README.md -------------------------------------------------------------------------------- /UI/Flow Launcher/assets/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Flow Launcher/assets/basic.png -------------------------------------------------------------------------------- /UI/Flow Launcher/assets/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Flow Launcher/assets/plugin.png -------------------------------------------------------------------------------- /UI/Flow Launcher/assets/usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Flow Launcher/assets/usage.gif -------------------------------------------------------------------------------- /UI/Powertoys Run/Assets/CLIPPyX-powertoys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/Assets/CLIPPyX-powertoys.png -------------------------------------------------------------------------------- /UI/Powertoys Run/Assets/powertoys-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/Assets/powertoys-logo.png -------------------------------------------------------------------------------- /UI/Powertoys Run/Assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/Assets/settings.png -------------------------------------------------------------------------------- /UI/Powertoys Run/Assets/usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/Assets/usage.gif -------------------------------------------------------------------------------- /UI/Powertoys Run/CLIPPyX Power Toys Run Plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/CLIPPyX Power Toys Run Plugin.zip -------------------------------------------------------------------------------- /UI/Powertoys Run/Community.PowerToys.Run.Plugin.CLIPPyX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/Community.PowerToys.Run.Plugin.CLIPPyX.csproj -------------------------------------------------------------------------------- /UI/Powertoys Run/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/Main.cs -------------------------------------------------------------------------------- /UI/Powertoys Run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/README.md -------------------------------------------------------------------------------- /UI/Powertoys Run/lib/PowerToys.Common.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/lib/PowerToys.Common.UI.dll -------------------------------------------------------------------------------- /UI/Powertoys Run/lib/PowerToys.ManagedCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/lib/PowerToys.ManagedCommon.dll -------------------------------------------------------------------------------- /UI/Powertoys Run/lib/PowerToys.Settings.UI.Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/lib/PowerToys.Settings.UI.Lib.dll -------------------------------------------------------------------------------- /UI/Powertoys Run/lib/Wox.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/lib/Wox.Infrastructure.dll -------------------------------------------------------------------------------- /UI/Powertoys Run/lib/Wox.Plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/lib/Wox.Plugin.dll -------------------------------------------------------------------------------- /UI/Powertoys Run/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Powertoys Run/plugin.json -------------------------------------------------------------------------------- /UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/README.md -------------------------------------------------------------------------------- /UI/Raycast/clippyx/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/.eslintrc.json -------------------------------------------------------------------------------- /UI/Raycast/clippyx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/.gitignore -------------------------------------------------------------------------------- /UI/Raycast/clippyx/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/.prettierrc -------------------------------------------------------------------------------- /UI/Raycast/clippyx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/CHANGELOG.md -------------------------------------------------------------------------------- /UI/Raycast/clippyx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/README.md -------------------------------------------------------------------------------- /UI/Raycast/clippyx/assets/CLIPPyX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/assets/CLIPPyX.png -------------------------------------------------------------------------------- /UI/Raycast/clippyx/metadata/clippyx-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/metadata/clippyx-1.png -------------------------------------------------------------------------------- /UI/Raycast/clippyx/metadata/clippyx-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/metadata/clippyx-2.png -------------------------------------------------------------------------------- /UI/Raycast/clippyx/metadata/clippyx-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/metadata/clippyx-3.png -------------------------------------------------------------------------------- /UI/Raycast/clippyx/metadata/clippyx-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/metadata/clippyx-4.png -------------------------------------------------------------------------------- /UI/Raycast/clippyx/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/package-lock.json -------------------------------------------------------------------------------- /UI/Raycast/clippyx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/package.json -------------------------------------------------------------------------------- /UI/Raycast/clippyx/src/caption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/src/caption.tsx -------------------------------------------------------------------------------- /UI/Raycast/clippyx/src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/src/interface.ts -------------------------------------------------------------------------------- /UI/Raycast/clippyx/src/similar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/src/similar.tsx -------------------------------------------------------------------------------- /UI/Raycast/clippyx/src/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/src/text.tsx -------------------------------------------------------------------------------- /UI/Raycast/clippyx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/Raycast/clippyx/tsconfig.json -------------------------------------------------------------------------------- /UI/assets/powertoys_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/assets/powertoys_sample.png -------------------------------------------------------------------------------- /UI/assets/webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/UI/assets/webui.png -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/CLIPPyX_diag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/assets/CLIPPyX_diag.png -------------------------------------------------------------------------------- /assets/fastgif_mac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/assets/fastgif_mac.gif -------------------------------------------------------------------------------- /assets/fastgif_win.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/assets/fastgif_win.gif -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/assets/logo_text.png -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/config.yaml -------------------------------------------------------------------------------- /create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/create_index.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/Common Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/docs/Common Issues.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/main.py -------------------------------------------------------------------------------- /ocr_model/OCR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/ocr_model/OCR.py -------------------------------------------------------------------------------- /ocr_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocr_model/ocr_mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/ocr_model/ocr_mac.py -------------------------------------------------------------------------------- /releasenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/releasenotes.md -------------------------------------------------------------------------------- /requirements-mlx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/requirements-mlx.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/server.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/settings.py -------------------------------------------------------------------------------- /settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings/clip_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/settings/clip_manager.py -------------------------------------------------------------------------------- /settings/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/settings/config_manager.py -------------------------------------------------------------------------------- /settings/directory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/settings/directory_manager.py -------------------------------------------------------------------------------- /settings/ocr_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/settings/ocr_manager.py -------------------------------------------------------------------------------- /settings/text_embed_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/settings/text_embed_manager.py -------------------------------------------------------------------------------- /settings/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/settings/tooltip.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/setup.py -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_embeddings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/text_embeddings/README.md -------------------------------------------------------------------------------- /text_embeddings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_embeddings/hftransformers_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/text_embeddings/hftransformers_embeddings.py -------------------------------------------------------------------------------- /text_embeddings/llamacpp_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/text_embeddings/llamacpp_embeddings.py -------------------------------------------------------------------------------- /text_embeddings/mlx_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/text_embeddings/mlx_embeddings.py -------------------------------------------------------------------------------- /text_embeddings/ollama_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/text_embeddings/ollama_embeddings.py -------------------------------------------------------------------------------- /text_embeddings/openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0ssamaak0/CLIPPyX/HEAD/text_embeddings/openai_api.py --------------------------------------------------------------------------------