We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a701625 commit 44dea3aCopy full SHA for 44dea3a
docs/getting-started.md
@@ -14,15 +14,15 @@ playwright install
14
15
## Basic usage
16
17
-If you want to use OpenAI, remember to set up `OPENAI_API_KEY` env variable.
+First, set up `PARSERA_API_KEY` env variable (If you want to run custom LLM see [Custom Models](/features/custom-models/)).
18
You can do this from python with:
19
```python
20
import os
21
22
-os.environ["OPENAI_API_KEY"] = "YOUR_OPENAI_API_KEY_HERE"
+os.environ["PARSERA_API_KEY"] = "YOUR_PARSERA_API_KEY_HERE"
23
```
24
25
-Next, you can run a basic version that uses `gpt-4o-mini`
+Next, you can run a basic version:
26
27
from parsera import Parsera
28
0 commit comments