mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 23:48:56 +01:00
Mention the experimental /chat API interacts with OpenAI's API
This commit is contained in:
parent
6ed667aed0
commit
2bc2780501
1 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
* Semantic Search
|
* Semantic Search
|
||||||
/Allow natural language search on user content like notes, images, transactions using transformer based models/
|
/Allow natural language search on user content like notes, images, transactions using transformer based models/
|
||||||
|
|
||||||
All data is processed locally. User can interface with semantic-search app via [[./src/interface/emacs/semantic-search.el][Emacs]], API or Commandline
|
All search is done locally. User can interface with semantic-search app via [[./src/interface/emacs/semantic-search.el][Emacs]], API or Commandline
|
||||||
|
|
||||||
** Setup
|
** Setup
|
||||||
|
|
||||||
|
@ -89,6 +89,11 @@
|
||||||
conda activate semantic-search
|
conda activate semantic-search
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
** Miscellaneous
|
||||||
|
- The experimental /chat API endpoint uses the [[https://openai.com/api/][OpenAI API]]
|
||||||
|
- It is disabled by default
|
||||||
|
- To use it add your ~openai-api-key~ to config.yml
|
||||||
|
|
||||||
** Acknowledgments
|
** Acknowledgments
|
||||||
- [[https://huggingface.co/sentence-transformers/msmarco-MiniLM-L-6-v3][MiniLM Model]] for Asymmetric Text Search. See [[https://www.sbert.net/examples/applications/retrieve_rerank/README.html][SBert Documentation]]
|
- [[https://huggingface.co/sentence-transformers/msmarco-MiniLM-L-6-v3][MiniLM Model]] for Asymmetric Text Search. See [[https://www.sbert.net/examples/applications/retrieve_rerank/README.html][SBert Documentation]]
|
||||||
- [[https://github.com/openai/CLIP][OpenAI CLIP Model]] for Image Search. See [[https://www.sbert.net/examples/applications/image-search/README.html][SBert Documentation]]
|
- [[https://github.com/openai/CLIP][OpenAI CLIP Model]] for Image Search. See [[https://www.sbert.net/examples/applications/image-search/README.html][SBert Documentation]]
|
||||||
|
|
Loading…
Reference in a new issue