Kevin Nejad

Results 10 comments of Kevin Nejad

Cannot resolve module ../../../ whenever I run react-native run iOS and need to do npm start --reset-cache to fix it.

npm start -- --reset-cache should resolve the problem. Issue #277 raised regarding need of npm reset cache. the alternative solution to have absolute path is to add a Package.json file...

@vykumar I am surprised why it did not resolved by reseting npm cache. but here is the alternative way of having absolute path. if youre trying to define path from...

It very useful package. My assumption is the babelrc file is not loaded by rerunning app. I will have a look at the package later on see if I can...

this solved mine. My case is integrating RN project into an existing project. So react-native link was not an option for me. https://github.com/wkh237/react-native-fetch-blob/issues/706#issuecomment-394759849

spring animation doesnt get duration. You can change the aniamtion to Animated.timing as follows: Animated.timing(this.state.rotate, { toValue: Number(isFlipped), duration:this.props.duration, useNativeDriver: this.props.useNativeDriver } ).start((param) => { this.setState({isFlipping: false}) this.props.onFlipEnd(this.state.isFlipped) }) }...

same way you do for iOS, make sure youve installed android sdks. Everything is almost the same as running on iOS.

quick fix `from langserve.api_handler import _get_base_run_id_as_str, _unpack_input` replace `server` with `api_handler`

here is a simple solution. keep in mind you still need to add filtering for each agent, depending on how you store vectors in pinecone index. 1. make following changes...

Here is what RNN suggested https://medium.com/@pqkluan/how-to-implement-splash-screen-in-react-native-navigation-ee2184a1a96