Skip to content

Commit

Permalink
misc: fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Oct 3, 2023
1 parent 744d4eb commit 034d73a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HACKTOBERFEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion application/vectorstore/elasticsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def search(self, question, k=2, index_name=settings.ELASTIC_INDEX, *args, **kwar
"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']:

Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit 034d73a

Please sign in to comment.