Kory Becker
Kory Becker
Thank you for reporting this! I really appreciate it!! For now, I'd probably hold off on changing the regex. Maybe a warning message, if the name contains an invalid character,...
You'll also need to update the files in the dist folder for [i18n.js](https://github.com/Astrocoders/node-pdf-invoice/blob/develop/dist/i18n.js) and [index.js](https://github.com/Astrocoders/node-pdf-invoice/blob/develop/dist/index.js)
You could use the following fork which has this change. Thanks. ``` npm install github:primaryobjects/node-pdf-invoice --save ```
lda works by building a dictionary of all unique terms, so it needs to know all of the words ahead of time. What you could do though, is when adding...
Thank you for the contribution! I'll keep this as a separate fork for now, for anyone that would like to incorporate it. Thank you.
Related https://github.com/Significant-Gravitas/Auto-GPT/pull/2214 Related https://github.com/Significant-Gravitas/Auto-GPT/pull/2437 *Allows `/autogpt/azure.yaml` and `/azure.yaml`.*
This solved the issue for me: Change [this](https://github.com/Significant-Gravitas/Auto-GPT/pull/2474/files#diff-d68d766b4e8d9c8441f3eaf24d729a7b9d7ba7365613433f485e60d67b50ccf3L27) line to: ``` return WORKSPACE_PATH.joinpath(relative_path) ```
The following worked for me on Windows 10 in Ubuntu WSL. Edit web_selenium.py [here](https://github.com/Significant-Gravitas/Auto-GPT/blob/master/autogpt/commands/web_selenium.py#L91): ``` options.binary_location="/mnt/c/Program Files/Google/Chrome/Application/chrome.exe" driver = webdriver.Chrome( executable_path="/mnt/c/Users/your_user_name/Auto-GPT/chromedriver", options=options ) ``` - You can find the path...
I can confirm this issue exists after upgrading to node v8.9.0. Upgrading the [version](https://github.com/JedWatson/react-component-gulp-tasks/pull/30/files#diff-b9cfc7f2cdf78a7f4b91a753d10865a2) of `gulp-git` in `package.json` indeed resolves the issue. ```js "dependencies": { .. "gulp-git": "^2.4.1", } ```
I'm ok with closing this PR and deferring it to a later time, if needed. Note, the proposed alternative still appears to [hardcode](https://github.com/Significant-Gravitas/Auto-GPT/blob/7c4fc45b4a536e6423b6491c34953a2516863d78/autogpt/commands/web_selenium.py#L132) the path to chromedriver. It also does...