mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-16 20:09:01 +00:00
Docs: Fixed grammatical mistake (#16858)
Co-authored-by: Vishal <141389263+VishalYadavShorthillsAI@users.noreply.github.com> Co-authored-by: Sanskar Tanwar <142409040+SanskarTanwarShorthillsAI@users.noreply.github.com> Co-authored-by: UpneetShorthillsAI <144228282+UpneetShorthillsAI@users.noreply.github.com> Co-authored-by: HarshGuptaShorthillsAI <144897987+HarshGuptaShorthillsAI@users.noreply.github.com> Co-authored-by: AdityaKalraShorthillsAI <143726711+AdityaKalraShorthillsAI@users.noreply.github.com> Co-authored-by: SakshiShorthillsAI <144228183+SakshiShorthillsAI@users.noreply.github.com> Co-authored-by: AashiGuptaShorthillsAI <144897730+AashiGuptaShorthillsAI@users.noreply.github.com> Co-authored-by: ShamshadAhmedShorthillsAI <144897733+ShamshadAhmedShorthillsAI@users.noreply.github.com> Co-authored-by: ManpreetShorthillsAI <142380984+ManpreetShorthillsAI@users.noreply.github.com> Co-authored-by: Aayush <142384656+AayushShorthillsAI@users.noreply.github.com> Co-authored-by: BajrangBishnoiShorthillsAi <148060486+BajrangBishnoiShorthillsAi@users.noreply.github.com>
This commit is contained in:
parent
5b3fc86cfd
commit
0bca0f4c24
4
docs/docs/_templates/integration.mdx
vendored
4
docs/docs/_templates/integration.mdx
vendored
@ -37,7 +37,7 @@ from langchain_community.llms import integration_class_REPLACE_ME
|
|||||||
|
|
||||||
## Text Embedding Models
|
## Text Embedding Models
|
||||||
|
|
||||||
See a [usage example](/docs/integrations/text_embedding/INCLUDE_REAL_NAME)
|
See a [usage example](/docs/integrations/text_embedding/INCLUDE_REAL_NAME).
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from langchain_community.embeddings import integration_class_REPLACE_ME
|
from langchain_community.embeddings import integration_class_REPLACE_ME
|
||||||
@ -45,7 +45,7 @@ from langchain_community.embeddings import integration_class_REPLACE_ME
|
|||||||
|
|
||||||
## Chat models
|
## Chat models
|
||||||
|
|
||||||
See a [usage example](/docs/integrations/chat/INCLUDE_REAL_NAME)
|
See a [usage example](/docs/integrations/chat/INCLUDE_REAL_NAME).
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from langchain_community.chat_models import integration_class_REPLACE_ME
|
from langchain_community.chat_models import integration_class_REPLACE_ME
|
||||||
|
@ -98,7 +98,7 @@ The LLM landscape is evolving at an unprecedented pace, with new libraries and m
|
|||||||
|
|
||||||
### Model composition
|
### Model composition
|
||||||
|
|
||||||
Deploying systems like LangChain demands the ability to piece together different models and connect them via logic. Take the example of building a natural language input SQL query engine. Querying an LLM and obtaining the SQL command is only part of the system. You need to extract metadata from the connected database, construct a prompt for the LLM, run the SQL query on an engine, collect and feed back the response to the LLM as the query runs, and present the results to the user. This demonstrates the need to seamlessly integrate various complex components built in Python into a dynamic chain of logical blocks that can be served together.
|
Deploying systems like LangChain demands the ability to piece together different models and connect them via logic. Take the example of building a natural language input SQL query engine. Querying an LLM and obtaining the SQL command is only part of the system. You need to extract metadata from the connected database, construct a prompt for the LLM, run the SQL query on an engine, collect and feedback the response to the LLM as the query runs, and present the results to the user. This demonstrates the need to seamlessly integrate various complex components built in Python into a dynamic chain of logical blocks that can be served together.
|
||||||
|
|
||||||
## Cloud providers
|
## Cloud providers
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user