Merge pull request #390 from jbampton/fix-spelling

misc: fix spelling
This commit is contained in:
Alex
2023-10-03 20:25:46 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
Welcome, contributors! We're excited to announce that DocsGPT is participating in Hacktoberfest. Get involved by submitting a **meaningful** pull request, and earn a free shirt in return!
All contributors with accepted PR's will recieve a cool holopin! 🤩 (Watchout for a reply in yout PR to collect it)
All contributors with accepted PR's will receive a cool holopin! 🤩 (Watchout for a reply in your PR to collect it)
📜 Here's How to Contribute:

View File

@@ -114,7 +114,7 @@ class ElasticsearchStore(BaseVectorStore):
"rank": {"rrf": {}},
}
resp = self.docsearch.search(index=self.index_name, query=full_query['query'], size=k, knn=full_query['knn'])
# create Documnets objects from the results page_content ['_source']['text'], metadata ['_source']['metadata']
# create Documents objects from the results page_content ['_source']['text'], metadata ['_source']['metadata']
doc_list = []
for hit in resp['hits']['hits']:

View File

@@ -62,7 +62,7 @@ use_openai() {
echo "The application is will runn on http://localhost:5173"
echo "The application will run on http://localhost:5173"
echo "You can stop the application by running the following command:"
echo "docker-compose down"
}