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

Fix typos in docs transformations.md and PsychicDemo.ipynb #17488

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/docs/examples/data_connectors/PsychicDemo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"source": [
"# Get Psychic API key from https://dashboard.psychic.dev/api-keys\n",
"psychic_key = \"PSYCHIC_API_KEY\"\n",
"# Connector ID and Account ID are typically set programatically based on the application state.\n",
"# Connector ID and Account ID are typically set programmatically based on the application state.\n",
"account_id = \"ACCOUNT_ID\"\n",
"connector_id = \"notion\"\n",
"documents = PsychicReader(psychic_key=psychic_key).load_data(\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ index = VectorStoreIndex.from_documents(

You can implement any transformation yourself by implementing the base class.

The following custom transformation will remove any special characters or punctutaion in text.
The following custom transformation will remove any special characters or punctuation in text.

```python
import re
Expand Down
Loading