You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/community/community.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ Here is a non exhaustive list of contributions you can make.
58
58
9. Improve documentation by adding or updating docstrings in modules, classes, methods, or functions (see for example [Add docstrings](https://github.com/llmware-ai/llmware/issues/219))
59
59
10. Improve test coverage
60
60
11. Answer questions in our [Discord channel](https://discord.gg/MhZn5Nc39h), especially in the [technical support forum](https://discord.com/channels/1179245642770559067/1218498778915672194)
61
-
12. Post projects in which you use ``llmware`` in our Discord forum [made with llmware](https://discord.com/channels/1179245642770559067/1218567269471486012), ideially with a link to a public GitHub repository
61
+
12. Post projects in which you use ``llmware`` in our Discord forum [made with llmware](https://discord.com/channels/1179245642770559067/1218567269471486012), ideally with a link to a public GitHub repository
You can set the embedding store with the ``vector_db`` parameter of the ``install_new_embedding`` method, which you call on a ``Library`` object eacht time you want to create an embedding for a *library*.
35
+
You can set the embedding store with the ``vector_db`` parameter of the ``install_new_embedding`` method, which you call on a ``Library`` object each time you want to create an embedding for a *library*.
36
36
37
37
The ``install_new_embedding`` method from the ``Library`` class has a ``vector_db`` parameter that sets the embedding store.
38
-
At the moment of this writting, *LLMWare* supports the embedding stores [chromadb](https://github.com/chroma-core/chroma), [neo4j](https://github.com/neo4j/neo4j), [milvus](https://github.com/milvus-io/milvus), [pg_vector](https://github.com/pgvector/pgvector), [postgres](https://github.com/postgres/postgres), [redis](https://github.com/redis/redis), [pinecone](https://www.pinecone.io/), [faiss](https://github.com/facebookresearch/faiss), [qdrant](https://github.com/qdrant/qdrant), [mongo atlas](https://www.mongodb.com/products/platform/atlas-database), and [lancedb](https://github.com/lancedb/lancedb).
38
+
At the moment of this writing, *LLMWare* supports the embedding stores [chromadb](https://github.com/chroma-core/chroma), [neo4j](https://github.com/neo4j/neo4j), [milvus](https://github.com/milvus-io/milvus), [pg_vector](https://github.com/pgvector/pgvector), [postgres](https://github.com/postgres/postgres), [redis](https://github.com/redis/redis), [pinecone](https://www.pinecone.io/), [faiss](https://github.com/facebookresearch/faiss), [qdrant](https://github.com/qdrant/qdrant), [mongo atlas](https://www.mongodb.com/products/platform/atlas-database), and [lancedb](https://github.com/lancedb/lancedb).
39
39
In the following example, we create the same embeddings three times for the same library, but store them in three different embedding stores.
You can set the collection store with the ``set_active_db`` method of the ``LLMWareConfig`` class.
61
61
62
62
The collection store is set using the ``LLMWareConfig`` class with the ``set_active_db`` method.
63
-
At the time of writting, **LLMWare** supports the three collection stores *MongoDB*, *Postgres*, and *SQLite* - which is the default.
63
+
At the time of writing, **LLMWare** supports the three collection stores *MongoDB*, *Postgres*, and *SQLite* - which is the default.
64
64
You can retrieve the supported collection store with the method ``get_supported_collection_db``.
65
-
In the example below, we first print the currently active collection store, then we retrieve the supported collection stores, before we swith to *Postgres*.
65
+
In the example below, we first print the currently active collection store, then we retrieve the supported collection stores, before we switch to *Postgres*.
66
66
67
67
```python
68
68
import logging
@@ -87,7 +87,7 @@ The ``Query`` class has the methods ``query``, ``text_query``, and ``semantic_qu
87
87
On a side note, ``query`` is a wrapper function for ``text_query`` and ``semantic_query``.
88
88
The value of ``result_count`` is passed on to the queried embedding store to control the number of retrieved results.
89
89
For example, for *pgvector*``result_count`` is passed on to the value after the ``LIMIT`` keyword.
90
-
In the ``SQL`` example below, you can see the resulting ``SQL`` query of ``LLMWare`` if ``result_count=10``, the name of the collectoin being ``agreements``, and the query vector being ``[1, 2, 3]``.
90
+
In the ``SQL`` example below, you can see the resulting ``SQL`` query of ``LLMWare`` if ``result_count=10``, the name of the collection being ``agreements``, and the query vector being ``[1, 2, 3]``.
91
91
```sql
92
92
SELECT
93
93
id,
@@ -126,7 +126,7 @@ You can set the Large Language Model (LLM) with the ``gen_model`` parameter of t
126
126
127
127
The ``Prompt`` class has the method ``load_model`` with the ``gen_model`` parameter which sets the LLM.
128
128
The ``gen_model`` parameter is passed on to the ``ModelCatalog`` class, which loads the LLM either from HuggingFace or from another source.
129
-
The ``ModelCatalog`` allows you to **list all available models** with the method ``list_generative_mdoels``, or just the local models ``list_generative_local_models``, or just the open source models ``list_open_source_models``.
129
+
The ``ModelCatalog`` allows you to **list all available models** with the method ``list_generative_models``, or just the local models ``list_generative_local_models``, or just the open source models ``list_open_source_models``.
130
130
In the example below, we log all available LLMs, including the ones that are available locally and the open source ones, and also create the prompters.
131
131
Each prompter uses a different LLM from our [BLING model series](https://llmware.ai/about), which you can also find on [HuggingFace](https://huggingface.co/collections/llmware/bling-models-6553c718f51185088be4c91a).
132
132
@@ -158,7 +158,7 @@ You can set the embedding model with the ``embedding_model_name`` parameter of t
158
158
159
159
The ``Library`` class has the method ``install_new_embedding`` with the ``embedding_model_name`` parameter which sets the embedding model.
160
160
The ``ModelCatalog`` allows you to **list all available embedding models** with the ``list_embedding_models`` method.
161
-
In the following example, we list all available embedding models, and then we create a library with the name ``embedding_models_example``, which we embedd two times with embedding models ``'mini-lm-sber'`` and ``'industry-bert-contracts'``.
161
+
In the following example, we list all available embedding models, and then we create a library with the name ``embedding_models_example``, which we embed two times with embedding models ``'mini-lm-sber'`` and ``'industry-bert-contracts'``.
Copy file name to clipboardexpand all lines: docs/community/join_our_community.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ ___
19
19
20
20
## Contributing
21
21
Please first discuss any change you want to make publicly, for example on GitHub via raising an [issue](https://github.com/llmware-ai/llmware/issues) or starting a [new discussion](https://github.com/llmware-ai/llmware/discussions).
22
-
You can also write an email or start a discussion on our Discrod channel.
22
+
You can also write an email or start a discussion on our Discord channel.
23
23
Read more about becoming a contributor in the [GitHub repo](https://github.com/llmware-ai/llmware/blob/main/CONTRIBUTING.md).
Copy file name to clipboardexpand all lines: docs/community/need_help.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ ___
19
19
20
20
## Contributing
21
21
Please first discuss any change you want to make publicly, for example on GitHub via raising an [issue](https://github.com/llmware-ai/llmware/issues) or starting a [new discussion](https://github.com/llmware-ai/llmware/discussions).
22
-
You can also write an email or start a discussion on our Discrod channel.
22
+
You can also write an email or start a discussion on our Discord channel.
23
23
Read more about becoming a contributor in the [GitHub repo](https://github.com/llmware-ai/llmware/blob/main/CONTRIBUTING.md).
Copy file name to clipboardexpand all lines: docs/community/troubleshooting.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ If you have any trouble, feel free to raise an Issue and we can provide you with
114
114
115
115
## Contributing
116
116
Please first discuss any change you want to make publicly, for example on GitHub via raising an [issue](https://github.com/llmware-ai/llmware/issues) or starting a [new discussion](https://github.com/llmware-ai/llmware/discussions).
117
-
You can also write an email or start a discussion on our Discrod channel.
117
+
You can also write an email or start a discussion on our Discord channel.
118
118
Read more about becoming a contributor in the [GitHub repo](https://github.com/llmware-ai/llmware/blob/main/CONTRIBUTING.md).
Copy file name to clipboardexpand all lines: docs/components/agent_inference_server.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -140,7 +140,7 @@ Reach out to us on [GitHub Discussions](https://github.com/llmware-ai/llmware/di
140
140
141
141
## Contributing
142
142
Please first discuss any change you want to make publicly, for example on GitHub via raising an [issue](https://github.com/llmware-ai/llmware/issues) or starting a [new discussion](https://github.com/llmware-ai/llmware/discussions).
143
-
You can also write an email or start a discussion on our Discrod channel.
143
+
You can also write an email or start a discussion on our Discord channel.
144
144
Read more about becoming a contributor in the [GitHub repo](https://github.com/llmware-ai/llmware/blob/main/CONTRIBUTING.md).
145
145
146
146
## Code of conduct
@@ -150,7 +150,7 @@ We welcome everyone into the ``llmware`` community.
150
150
## ``llmware`` and [AI Bloks](https://www.aibloks.com/home)
151
151
``llmware`` is an open source project from [AI Bloks](https://www.aibloks.com/home) - the company behind ``llmware``.
152
152
The company offers a Software as a Service (SaaS) Retrieval Augmented Generation (RAG) service.
153
-
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in Oktober 2022.
153
+
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in October 2022.
Copy file name to clipboardexpand all lines: docs/components/agents.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ Reach out to us on [GitHub Discussions](https://github.com/llmware-ai/llmware/di
83
83
84
84
## Contributing
85
85
Please first discuss any change you want to make publicly, for example on GitHub via raising an [issue](https://github.com/llmware-ai/llmware/issues) or starting a [new discussion](https://github.com/llmware-ai/llmware/discussions).
86
-
You can also write an email or start a discussion on our Discrod channel.
86
+
You can also write an email or start a discussion on our Discord channel.
87
87
Read more about becoming a contributor in the [GitHub repo](https://github.com/llmware-ai/llmware/blob/main/CONTRIBUTING.md).
88
88
89
89
## Code of conduct
@@ -93,7 +93,7 @@ We welcome everyone into the ``llmware`` community.
93
93
## ``llmware`` and [AI Bloks](https://www.aibloks.com/home)
94
94
``llmware`` is an open source project from [AI Bloks](https://www.aibloks.com/home) - the company behind ``llmware``.
95
95
The company offers a Software as a Service (SaaS) Retrieval Augmented Generation (RAG) service.
96
-
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in Oktober 2022.
96
+
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in October 2022.
Copy file name to clipboardexpand all lines: docs/components/components.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ Reach out to us on [GitHub Discussions](https://github.com/llmware-ai/llmware/di
111
111
112
112
## Contributing
113
113
Please first discuss any change you want to make publicly, for example on GitHub via raising an [issue](https://github.com/llmware-ai/llmware/issues) or starting a [new discussion](https://github.com/llmware-ai/llmware/discussions).
114
-
You can also write an email or start a discussion on our Discrod channel.
114
+
You can also write an email or start a discussion on our Discord channel.
115
115
Read more about becoming a contributor in the [GitHub repo](https://github.com/llmware-ai/llmware/blob/main/CONTRIBUTING.md).
116
116
117
117
## Code of conduct
@@ -121,7 +121,7 @@ We welcome everyone into the ``llmware`` community.
121
121
## ``llmware`` and [AI Bloks](https://www.aibloks.com/home)
122
122
``llmware`` is an open source project from [AI Bloks](https://www.aibloks.com/home) - the company behind ``llmware``.
123
123
The company offers a Software as a Service (SaaS) Retrieval Augmented Generation (RAG) service.
124
-
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in Oktober 2022.
124
+
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in October 2022.
Copy file name to clipboardexpand all lines: docs/components/data_stores.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Reach out to us on [GitHub Discussions](https://github.com/llmware-ai/llmware/di
49
49
50
50
## Contributing
51
51
Please first discuss any change you want to make publicly, for example on GitHub via raising an [issue](https://github.com/llmware-ai/llmware/issues) or starting a [new discussion](https://github.com/llmware-ai/llmware/discussions).
52
-
You can also write an email or start a discussion on our Discrod channel.
52
+
You can also write an email or start a discussion on our Discord channel.
53
53
Read more about becoming a contributor in the [GitHub repo](https://github.com/llmware-ai/llmware/blob/main/CONTRIBUTING.md).
54
54
55
55
## Code of conduct
@@ -59,7 +59,7 @@ We welcome everyone into the ``llmware`` community.
59
59
## ``llmware`` and [AI Bloks](https://www.aibloks.com/home)
60
60
``llmware`` is an open source project from [AI Bloks](https://www.aibloks.com/home) - the company behind ``llmware``.
61
61
The company offers a Software as a Service (SaaS) Retrieval Augmented Generation (RAG) service.
62
-
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in Oktober 2022.
62
+
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in October 2022.
Copy file name to clipboardexpand all lines: docs/components/embedding_models.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ Reach out to us on [GitHub Discussions](https://github.com/llmware-ai/llmware/di
91
91
92
92
## Contributing
93
93
Please first discuss any change you want to make publicly, for example on GitHub via raising an [issue](https://github.com/llmware-ai/llmware/issues) or starting a [new discussion](https://github.com/llmware-ai/llmware/discussions).
94
-
You can also write an email or start a discussion on our Discrod channel.
94
+
You can also write an email or start a discussion on our Discord channel.
95
95
Read more about becoming a contributor in the [GitHub repo](https://github.com/llmware-ai/llmware/blob/main/CONTRIBUTING.md).
96
96
97
97
## Code of conduct
@@ -101,7 +101,7 @@ We welcome everyone into the ``llmware`` community.
101
101
## ``llmware`` and [AI Bloks](https://www.aibloks.com/home)
102
102
``llmware`` is an open source project from [AI Bloks](https://www.aibloks.com/home) - the company behind ``llmware``.
103
103
The company offers a Software as a Service (SaaS) Retrieval Augmented Generation (RAG) service.
104
-
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in Oktober 2022.
104
+
[AI Bloks](https://www.aibloks.com/home) was founded by [Namee Oberst](https://www.linkedin.com/in/nameeoberst/) and [Darren Oberst](https://www.linkedin.com/in/darren-oberst-34a4b54/) in October 2022.
0 commit comments