Xiao
Xiao
OS: MacOS Monterey 12.5 (Intel chip) Python: 3.10.5 ```bash ❯ pytest tests ============================================================================== test session starts =============================================================================== platform darwin -- Python 3.10.5, pytest-7.1.2, pluggy-1.0.0 rootdir: /Users/xiao/development/github.com/XiaoConstantine/bolt-1 collected 4 items tests/test_encoder.py...
The existing steps on the main README seem a bit outdated(for python at least) This PR is mainly moving existing information around to avoid frictions to get started with using...
The goal of this PR is to enable scann to be built on MacOS as well. (My system: Big Sur 11.5 intel chip). It includes several existing know fixes to...
Use [conc](https://github.com/sourcegraph/conc) to simplify a bit the concurrency code Some cleanup
**Describe the bug** A clear and concise description of what the bug is. When use `mistral:latest` as model, I get repetive output from agents, examples: I didn't notice this behavior...
Provide an optional chromadb client for ChromadbRM. I don't see a good way to override default options when use chromadb without default config. Similar to weaviate_rm
Might be a stupid question, but when client has a chromadb as: ```go store, errNs := chroma.New( chroma.WithChromaURL(localURL), chroma.WithEmbedder(embeder), chroma.WithDistanceFunction("cosine"), chroma.WithNameSpace(sessionString), ) ``` and eventually: ```go store.AddDocuments(ctx, docs) ``` Should...
Clean up `predict/knn` and `teleprompt/knn_fewshot`: * Added a optional `vectorizer` instead of using hardcoded `SentenceTransformer` one * Clean up constructor a bit