gitextract_ahfxg4dk/ ├── .gitignore ├── ATTRIBUTIONS.md ├── LICENSE ├── README.md ├── docs/ │ ├── .gitignore │ ├── 404.html │ ├── CNAME │ ├── Gemfile │ ├── _config.yml │ ├── _includes/ │ │ ├── footer.html │ │ └── header.html │ ├── _layouts/ │ │ ├── default.html │ │ ├── home.html │ │ ├── page.html │ │ └── post.html │ ├── _posts/ │ │ ├── 2023-11-06-introducing-memory-cache.markdown │ │ ├── 2023-11-30-we-have-a-website.markdown │ │ ├── 2024-03-01-memory-cache-and-ai-privacy.markdown │ │ ├── 2024-03-06-designlog-update.markdown │ │ ├── 2024-03-07-devlog.markdown │ │ ├── 2024-03-15-devlog.markdown │ │ └── 2024-04-19-memory-cache-hub.markdown │ ├── _sass/ │ │ ├── memorycache.scss │ │ └── minima.scss │ ├── about.markdown │ ├── assets/ │ │ └── main.scss │ ├── faq.md │ ├── index.markdown │ └── readme.md ├── extension/ │ ├── content-script.js │ ├── manifest.json │ └── popup/ │ ├── marked.esm.js │ ├── memory_cache.html │ ├── memory_cache.js │ └── styles.css ├── scratch/ │ ├── backend/ │ │ ├── hub/ │ │ │ ├── .gitignore │ │ │ ├── PLAN.md │ │ │ ├── README.md │ │ │ ├── docker/ │ │ │ │ ├── Dockerfile.hub-builder-gnu-linux │ │ │ │ ├── Dockerfile.hub-builder-old-gnu-linux │ │ │ │ ├── Dockerfile.hub-dev │ │ │ │ └── Dockerfile.hub-dev-cuda │ │ │ ├── requirements/ │ │ │ │ ├── hub-base.txt │ │ │ │ ├── hub-builder.txt │ │ │ │ └── hub-cpu.txt │ │ │ └── src/ │ │ │ ├── api/ │ │ │ │ ├── llamafile_api.py │ │ │ │ └── thread_api.py │ │ │ ├── async_utils.py │ │ │ ├── chat.py │ │ │ ├── chat2.py │ │ │ ├── chat3.py │ │ │ ├── fastapi_app.py │ │ │ ├── gradio_app.py │ │ │ ├── hub.py │ │ │ ├── hub_build_gnu_linux.py │ │ │ ├── hub_build_macos.py │ │ │ ├── hub_build_windows.py │ │ │ ├── llamafile_infos.json │ │ │ ├── llamafile_infos.py │ │ │ ├── llamafile_manager.py │ │ │ └── static/ │ │ │ └── index.html │ │ ├── langserve-demo/ │ │ │ ├── .gitignore │ │ │ ├── Dockerfile.cpu │ │ │ ├── README.md │ │ │ ├── client.py │ │ │ ├── requirements-cpu.txt │ │ │ ├── requirements.txt │ │ │ └── serve.py │ │ └── python-llamafile-manager/ │ │ ├── .gitignore │ │ ├── Dockerfile.plm │ │ ├── Dockerfile.plm-builder-gnu-linux │ │ ├── README.md │ │ ├── build_gnu_linux.py │ │ ├── manager.py │ │ └── requirements.txt │ ├── browser-client/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── styleguide.html │ │ │ └── styles.css │ │ └── webpack.config.js │ └── hub-browser-client/ │ ├── .gitignore │ ├── README.md │ ├── config/ │ │ ├── env.js │ │ ├── getHttpsConfig.js │ │ ├── jest/ │ │ │ ├── babelTransform.js │ │ │ ├── cssTransform.js │ │ │ └── fileTransform.js │ │ ├── modules.js │ │ ├── paths.js │ │ ├── webpack/ │ │ │ └── persistentCache/ │ │ │ └── createEnvironmentHash.js │ │ ├── webpack.config.js │ │ └── webpackDevServer.config.js │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── scripts/ │ │ ├── build.js │ │ ├── start.js │ │ └── test.js │ ├── src/ │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── api/ │ │ │ └── llamafile_api.ts │ │ ├── components/ │ │ │ └── llamafile_details.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── setupTests.ts │ │ └── types.ts │ └── tsconfig.json └── scripts/ └── run_ingest.sh