浏览代码

Merge pull request #9 from embedchain/improvement-2

Update Readme
Taranjeet Singh 2 年之前
父节点
当前提交
307ad00d7d
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -6,7 +6,7 @@ It abstracts the enitre process of loading dataset, chunking it, creating embedd
 
 
 You can add a single or multiple dataset using `.add` function and then use `.query` function to find an answer from the added datasets.
 You can add a single or multiple dataset using `.add` function and then use `.query` function to find an answer from the added datasets.
 
 
-* If you want to create a Naval Ravikant bot which has 1 youtube video, 1 book as pdf and 2 of his blog posts, all you need to do is add the links to the videos, pdf and blog posts and embedchain will create a bot for you.
+If you want to create a Naval Ravikant bot which has 1 youtube video, 1 book as pdf and 2 of his blog posts, all you need to do is add the links to the videos, pdf and blog posts and embedchain will create a bot for you.
 
 
 ```python
 ```python
 
 
@@ -95,7 +95,7 @@ To add any pdf file, use the data_type as `pdf_file`. Eg:
 app.add('pdf_file', 'a_valid_url_where_pdf_file_can_be_accessed')
 app.add('pdf_file', 'a_valid_url_where_pdf_file_can_be_accessed')
 ```
 ```
 
 
-Note that we do not support password protected pdfs as of now.
+Note that we do not support password protected pdfs.
 
 
 ### Web Page
 ### Web Page
 
 
@@ -138,7 +138,7 @@ In the first release, we are making it easier for anyone to get a chatbot over a
 
 
 embedchain is built on the following stack:
 embedchain is built on the following stack:
 
 
-- [langchain](https://github.com/hwchase17/langchain) as an LLM framework to load, chunk and index data
+- [Langchain](https://github.com/hwchase17/langchain) as an LLM framework to load, chunk and index data
 - [OpenAI's Ada embedding model](https://platform.openai.com/docs/guides/embeddings) to create embeddings
 - [OpenAI's Ada embedding model](https://platform.openai.com/docs/guides/embeddings) to create embeddings
 - [OpenAI's ChatGPT API](https://platform.openai.com/docs/guides/gpt/chat-completions-api) as LLM to get answers given the context
 - [OpenAI's ChatGPT API](https://platform.openai.com/docs/guides/gpt/chat-completions-api) as LLM to get answers given the context
 - [Chroma](https://github.com/chroma-core/chroma) as the vector database to store embeddings
 - [Chroma](https://github.com/chroma-core/chroma) as the vector database to store embeddings