This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async createRandomIndianPhoneNumber() | |
{ | |
const epochTime = Math.floor(Date.now() / 1000); | |
const randomBase = epochTime.toString().slice(-9); | |
//Indian valid phone number starts with 6,7,8 or 9 | |
const randomNumber = Math.floor(Math.random() * (9 - 6 + 1)) + 6; | |
console.log(randomNumber); | |
const mobileNumberBase = `+91${randomNumber}${randomBase}`; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Download Ollama: https://ollama.com/ | |
Ollama model library: https://ollama.com/library | |
Continue plugin: https://www.continue.dev/ | |
AI coder LLM benchmark dashboard: https://evalplus.github.io/leaderboard.html | |
UI Interface for LLM: https://github.com/open-webui/open-webui | |
Local AI for browser: https://github.com/browser-use/web-ui | |
Reference videos: https://www.youtube.com/watch?v=42ifmFq6g7g | |
https://www.youtube.com/watch?v=he0_W5iCv-I | |
Open Web UI: https://www.youtube.com/watch?v=BzFafshQkWw | |
Browser AI Agent: https://www.youtube.com/watch?v=AK9mRsXdr4w |