├── .env_example ├── Dockerfile ├── README.md ├── cohere_reranking.py ├── extract_content_from_website.py ├── groq_api.py ├── jina_rerank.py ├── main.py ├── prompts.py ├── requirements.txt ├── semantic_chunking.py ├── sources_manipulation.py └── sources_searcher.py /.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/.env_example -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/README.md -------------------------------------------------------------------------------- /cohere_reranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/cohere_reranking.py -------------------------------------------------------------------------------- /extract_content_from_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/extract_content_from_website.py -------------------------------------------------------------------------------- /groq_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/groq_api.py -------------------------------------------------------------------------------- /jina_rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/jina_rerank.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/main.py -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/requirements.txt -------------------------------------------------------------------------------- /semantic_chunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/semantic_chunking.py -------------------------------------------------------------------------------- /sources_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/sources_manipulation.py -------------------------------------------------------------------------------- /sources_searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YassKhazzan/openperplex_backend_os/HEAD/sources_searcher.py --------------------------------------------------------------------------------