Skip to content

Commit

Permalink
docs: add ellipsis in retriever init README mentions
Browse files Browse the repository at this point in the history
  • Loading branch information
cjumel committed Nov 21, 2024
1 parent d5fdd65 commit 68ce440
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pip install langchain-linkup

os.environ["LINKUP_API_KEY"] = "YOUR_LINKUP_API_KEY"
# or dotenv.load_dotenv()
retriever = LinkupRetriever()
retriever = LinkupRetriever(...)
...
```

Expand All @@ -59,7 +59,7 @@ pip install langchain-linkup
```python
from langchain_linkup import LinkupRetriever

retriever = LinkupRetriever(api_key="YOUR_LINKUP_API_KEY")
retriever = LinkupRetriever(api_key="YOUR_LINKUP_API_KEY", ...)
...
```

Expand Down

0 comments on commit 68ce440

Please sign in to comment.