Skip to content

Commit d912ad6

Browse files
authored
Update README.md
1 parent 7429ea3 commit d912ad6

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,12 @@ Check out the [docs](https://docs.embedbase.xyz) for more info.
2828

2929
## What is it
3030

31-
Embedbase is a dead-simple API to help you use [VectorDBs](https://learn.microsoft.com/en-us/semantic-kernel/concepts-ai/vectordb) and [Embeddings Models](https://en.wikipedia.org/wiki/Sentence_embedding#:~:text=Sentence%20embedding%20is%20the%20collective,to%20vectors%20of%20real%20numbers.) without needing to host them!
32-
You can use embedbase to customize LLM (like ChatGPT!) and automatically feed them the right information.
31+
Embedbase is a dead-simple API to help you use [VectorDBs](https://learn.microsoft.com/en-us/semantic-kernel/concepts-ai/vectordb) and LLMs without needing to host them!
32+
33+
## Key features
34+
35+
- Generate: use `.generateText()` to use 9+ LLMs
36+
- Semantic Search: use `.add()` to create a list of semantically searchable information and `.search()` to run semantic queries
3337

3438
## Installation
3539
`npm i embedbase-js`
@@ -54,7 +58,7 @@ const stringifiedSearchResults = searchResults
5458
.join('')
5559

5660
const answer = await embedbase
57-
.useModel('openai/gpt-3.5-turbo-16k')
61+
.useModel('openai/gpt-3.5-turbo')
5862
.generateText(`${stringifiedSearchResults} ${question}`)
5963

6064
console.log(answer) // 'I suggest considering harem pants for your needs. Harem pants are known for their ...'

0 commit comments

Comments
 (0)