Collin Dutter
Collin Dutter
@EddyVerbruggen thank you for the quick response! Unfortunately, I don't think that comment helps. I'm already importing the plugin before use of Amplify. Are there any additional steps I should...
Getting the same issue with
When configured on a fresh project, I get `Can't find variable: window`. Here is the project: https://github.com/collindutter/NodeifyAmplify Thanks for the help! EDIT: Just to clarify, I'm including the library in...
Not sure how much this helps, but it looks like people using react and rn-nodeify were able to get it working https://github.com/aws/aws-amplify/issues/140
@EddyVerbruggen were you able to find anything in the repo I linked?
@diegovincent sorry I dropped this a couple years ago. I don't think I ever reached a solution myself.
@diegovincent Just dropped a like, best of luck!
@brian7989 I get a 500 error when I try to use /payments. Every other endpoint works fine.
I fixed it by installing `util`: `npm i util` and then adding: `(window as any).global.util = (window as any).global.util || require('util').util;` to my polyfills.ts
Hey @hyusetiawan! Once [this PR](https://github.com/griptape-ai/griptape/pull/257) goes in, this should work: ```python from griptape.structures import Agent from griptape.tools import DateTime from griptape.drivers import OpenAiCompletionPromptDriver agent = Agent( tools=[DateTime()], prompt_driver=OpenAiCompletionPromptDriver(model="text-davinci-003"), ) agent.run("what...