docs: typo in streaming.js (#971)

Looks like an error
This commit is contained in:
Julien Bouquillon 2023-09-06 14:57:59 +02:00 committed by GitHub
parent c8bbbd8129
commit 3ed4c0f33f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -121,9 +121,9 @@ If you're using the free Inference API, you can use `HfInference`. If you're usi
We can create a `HfInferenceEndpoint` providing our endpoint URL and credential. We can create a `HfInferenceEndpoint` providing our endpoint URL and credential.
```js ```js
import { HfInference } from '@huggingface/inference' import { HfInferenceEndpoint } from '@huggingface/inference'
const hf = new HfInference('https://YOUR_ENDPOINT.endpoints.huggingface.cloud', 'hf_YOUR_TOKEN') const hf = new HfInferenceEndpoint('https://YOUR_ENDPOINT.endpoints.huggingface.cloud', 'hf_YOUR_TOKEN')
// prompt // prompt
const prompt = 'What can you do in Nuremberg, Germany? Give me 3 Tips' const prompt = 'What can you do in Nuremberg, Germany? Give me 3 Tips'