upstash / rag-chat

Batteries included SDK for RAG development.
https://upstash.com/docs/vector/sdks/rag-chat/gettingstarted
MIT License
143 stars 30 forks source link

Fix: Correct URL reconstruction to properly handle URLs with protocol #41

Closed sijan2 closed 1 month ago

sijan2 commented 1 month ago

Corrected URL reconstruction to handle protocols properly. console.log of params and reconstructedUrl Before the Fix:

•   Input: ['https%3A', 'example.com']
•   Output: https:/example.com

After the Fix:

•   Input: ['https%3A', 'example.com']
•   Output: https://example.com