Skip to content

Commit 2846cb4

Browse files
authored
Merge branch 'hwchase17:master' into feature/vectorstore_myscale
2 parents 5fd3bfc + e55db58 commit 2846cb4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+3259
-373
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,6 @@ wandb/
142142
# asdf tool versions
143143
.tool-versions
144144
/.ruff_cache/
145+
146+
*.pkl
147+
*.bin

docs/gallery.rst

+11
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,17 @@ Proprietary
280280

281281
---
282282

283+
.. link-button:: https://anysummary.app
284+
:type: url
285+
:text: Summarize any file with AI
286+
:classes: stretched-link btn-lg
287+
288+
+++
289+
290+
Summarize not only long docs, interview audio or video files quickly, but also entire websites and YouTube videos. Share or download your generated summaries to collaborate with others, or revisit them at any time! Bonus: `@anysummary <https://twitter.com/anysummary>`_ on Twitter will also summarize any thread it is tagged in.
291+
292+
---
293+
283294
.. link-button:: https://twitter.com/dory111111/status/1608406234646052870?s=20&t=XYlrbKM0ornJsrtGa0br-g
284295
:type: url
285296
:text: AI Assisted SQL Query Generator

docs/index.rst

+2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ Additional collection of resources we think may be useful as you develop your ap
159159

160160
- `Discord <https://discord.gg/6adMQxSpJS>`_: Join us on our Discord to discuss all things LangChain!
161161

162+
- `YouTube <./youtube.html>`_: A collection of the LangChain tutorials and videos.
163+
162164
- `Production Support <https://forms.gle/57d8AmXBYp8PP8tZA>`_: As you move your LangChains into production, we'd love to offer more comprehensive support. Please fill out this form and we'll set up a dedicated support Slack channel.
163165

164166

docs/modules/agents/agents/custom_mrkl_agent.ipynb

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@
2020
]
2121
},
2222
{
23+
"attachments": {},
2324
"cell_type": "markdown",
2425
"id": "6064f080",
2526
"metadata": {},
2627
"source": [
2728
"### Custom LLMChain\n",
2829
"\n",
29-
"The first way to create a custom agent is to use an existing Agent class, but use a custom LLMChain. This is the simplest way to create a custom Agent. It is highly reccomended that you work with the `ZeroShotAgent`, as at the moment that is by far the most generalizable one. \n",
30+
"The first way to create a custom agent is to use an existing Agent class, but use a custom LLMChain. This is the simplest way to create a custom Agent. It is highly recommended that you work with the `ZeroShotAgent`, as at the moment that is by far the most generalizable one. \n",
3031
"\n",
3132
"Most of the work in creating the custom LLMChain comes down to the prompt. Because we are using an existing agent class to parse the output, it is very important that the prompt say to produce text in that format. Additionally, we currently require an `agent_scratchpad` input variable to put notes on previous actions and observations. This should almost always be the final part of the prompt. However, besides those instructions, you can customize the prompt as you wish.\n",
3233
"\n",

0 commit comments

Comments
 (0)