From 29f97388a36f054546e9658737d208f9e1a79abe Mon Sep 17 00:00:00 2001 From: MohamedAlawakey Date: Tue, 30 Sep 2025 01:14:24 +0300 Subject: [PATCH] this file have the Constants variables and these values --- config.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 config.py diff --git a/config.py b/config.py new file mode 100644 index 0000000..80b37a4 --- /dev/null +++ b/config.py @@ -0,0 +1,10 @@ +# Constants +USER_AGENT = "docs-app/1.0" +SERPER_URL = "https://google.serper.dev/search" + +# Supported libraries and their docs URLs +DOCX_URLS = { + "langchain": "https://python.langchain.com/docs", + "llama-index": "https://docs.llamaindex.ai/en/stable", + "openai": "https://platform.openai.com/docs", +}