Skip to content

Instantly share code, notes, and snippets.

Kimodo Local Installation Guide (with Custom Text Encoder)

This guide walks through setting up Kimodo from scratch, downloading a custom text encoder (KIMODO-Meta3_llm2vec_NF4), and forcing the application to use your local offline model instead of making API calls to Hugging Face.

1. Environment Setup

First, create a fresh Python virtual environment to keep dependencies clean, and activate it.

python -m venv venv
source venv/bin/activate
@pedrosoares
pedrosoares / react_hack.js
Created October 18, 2018 17:36
Do not React
import {Component} from "react";
Object.defineProperties(Component.prototype, {
$toast: {
get(){
return {
ola: "Mundo"
}
}
}