Skip to content

Commit

Permalink
community: fix typo in async ollama chat (#15276)
Browse files Browse the repository at this point in the history
Made a stupid typo in the last PR which got already merged😅

revamp getting started (#15070)

Harrison/agents rewrite (#15028)

havent marked the class as deprecated yet, will likely want to do all in
one go (with other classes)

---------

Co-authored-by: Nuno Campos <[email protected]>

ModelIO revamp (#15230)

Retrieval Docs Revamp (#15238)

[core, langchain] modelio code improvements (#15277)

[langchain] agents code changes (#15278)

<!-- Thank you for contributing to LangChain!

Please title your PR "<package>: <description>", where <package> is
whichever of langchain, community, core, experimental, etc. is being
modified.

Replace this entire comment with:
  - **Description:** a description of the change,
  - **Issue:** the issue # it fixes if applicable,
  - **Dependencies:** any dependencies required for this change,
- **Twitter handle:** we announce bigger features on Twitter. If your PR
gets announced, and you'd like a mention, we'll gladly shout you out!

move stuff
  • Loading branch information
shroominic authored and hwchase17 committed Dec 28, 2023
1 parent fea4888 commit 5445fe4
Show file tree
Hide file tree
Showing 170 changed files with 10,907 additions and 15,276 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "9b22020a",
"metadata": {},
Expand Down Expand Up @@ -146,7 +145,6 @@
"source": []
},
{
"attachments": {},
"cell_type": "markdown",
"id": "c0a6c031",
"metadata": {},
Expand Down Expand Up @@ -280,7 +278,6 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "787a9b5e",
"metadata": {},
Expand All @@ -289,7 +286,6 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "9161ba91",
"metadata": {},
Expand Down Expand Up @@ -411,7 +407,6 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "49a0cbbe",
"metadata": {},
Expand Down Expand Up @@ -525,7 +520,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.3"
"version": "3.10.1"
}
},
"nbformat": 4,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"source": [
"# Custom agent with tool retrieval\n",
"\n",
"This notebook builds off of [this notebook](/docs/modules/agents/how_to/custom_llm_agent) and assumes familiarity with how agents work.\n",
"\n",
"The novel idea introduced in this notebook is the idea of using retrieval to select the set of tools to use to answer an agent query. This is useful when you have many many tools to select from. You cannot put the description of all the tools in the prompt (because of context length issues) so instead you dynamically select the N tools you do want to consider using at run time.\n",
"\n",
"In this notebook we will create a somewhat contrived example. We will have one legitimate tool (search) and then 99 fake tools which are just nonsense. We will then add a step in the prompt template that takes the user input and retrieves tool relevant to the query."
Expand Down Expand Up @@ -489,7 +487,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.3"
"version": "3.10.1"
},
"vscode": {
"interpreter": {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
561 changes: 373 additions & 188 deletions docs/docs/get_started/quickstart.mdx

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/docs/integrations/llms/ollama.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.16"
"version": "3.10.1"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit 5445fe4

Please sign in to comment.