Sudhan

Results 7 comments of Sudhan

Running npm update. And hosting public folder works only for the index page. Clicking on example folder redirects back to index page.

I tried that too, Faced the same issue setproctitle installation is failing in windows. The error says Get "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools The installation requires more than 2.7gb...

you could try deleting the node_modules folder and package-lock-json and try running `npm install` again. and then run `node app.js 3000`

Hi, had this same issue. I had multiple instance of electron running on task manager when this happened. I ended those and test ran without this error. I guess running...

would like to take up this issue. **Implementation plan:** -implement a personality search box -use Axios and Cheerio to crawl Goodreads [quote search](https://www.goodreads.com/search?utf8=✓&q=gandhi&search_type=quotes&search%5Bfield%5D=author) -pick a random quote from the first...

heroku service to get quotes is ready ``` axios .post('https://qoutescraper.herokuapp.com/quote/author', { author: "Mahatma Gandhi" }) .then(quote=> { console.log(quote) }) //output //"Prayer is not asking. It is a longing of the...

`PromptTemplate.from_template` already does this example code: ``` from langchain.prompts import PromptTemplate assert PromptTemplate.from_template("What is the price of {product_name}?") == PromptTemplate( input_variables=['product_name'], template="What is the price of {product_name}?" ) ```