Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #9

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ EXPO_PUBLIC_OPENAI_MODEL=model_name_here # Optional, model name from OpenAI (
Initialize the `useChat` hook inside your component. You can optionally pass **initial messages**, **success** and **error handlers**, and any tools the model will have access to.

```ts
const { input, messages, isLoading, handleSubmit, onInputChange } = useChat({
const { input, messages, isLoading, handleSubmit } = useChat({
openAi,
// Optional initial messages
initialMessages: [
Expand Down Expand Up @@ -194,7 +194,8 @@ const {

## Examples

TODO
- Minimal: https://github.com/zerodays/react-native-gen-ui-minimal-example
- Location & Weather: https://github.com/zerodays/react-native-gen-ui-weather-example

## License

Expand Down
Loading