Docs: Add MCP to README, fix a few typos (#8691)
* Migrate PR 8379 * docstring typos * Update README.md Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com> --------- Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com>
This commit is contained in:
parent
e28104c852
commit
996fdd4d0a
3 changed files with 6 additions and 5 deletions
|
|
@ -15,7 +15,7 @@
|
|||
> [!CAUTION]
|
||||
> Users must update to Langflow >= 1.3 to protect against [CVE-2025-3248](https://nvd.nist.gov/vuln/detail/CVE-2025-3248).
|
||||
|
||||
[Langflow](https://langflow.org) is a powerful tool for building and deploying AI-powered agents and workflows. It provides developers with both a visual authoring experience and a built-in API server that turns every agent into an API endpoint that can be integrated into applications built on any framework or stack. Langflow comes with batteries included and supports all major LLMs, vector databases and a growing library of AI tools.
|
||||
[Langflow](https://langflow.org) is a powerful tool for building and deploying AI-powered agents and workflows. It provides developers with both a visual authoring experience and built-in API and MCP servers that turn every workflow into a tool that can be integrated into applications built on any framework or stack. Langflow comes with batteries included and supports all major LLMs, vector databases and a growing library of AI tools.
|
||||
|
||||
## ✨ Highlight features
|
||||
|
||||
|
|
@ -24,6 +24,7 @@
|
|||
- **Interactive playground** to immediately test and refine your flows with step-by-step control.
|
||||
- **Multi-agent orchestration** with conversation management and retrieval.
|
||||
- **Deploy as an API** or export as JSON for Python apps.
|
||||
- **Deploy as an MCP server** and turn your flows into tools for MCP clients.
|
||||
- **Observability** with LangSmith, LangFuse and other integrations.
|
||||
- **Enterprise-ready** security and scalability.
|
||||
|
||||
|
|
@ -34,7 +35,7 @@ Langflow requires [Python 3.10 to 3.13](https://www.python.org/downloads/release
|
|||
1. To install Langflow, run:
|
||||
|
||||
```shell
|
||||
uv pip install langflow -U
|
||||
uv pip install langflow -U
|
||||
```
|
||||
|
||||
2. To run Langflow, run:
|
||||
|
|
|
|||
|
|
@ -189,7 +189,7 @@ export const CSVViewErrorTitle = "CSV output";
|
|||
|
||||
export const CSVNoDataError = "No data available";
|
||||
|
||||
export const PDFViewConstant = "Expand the ouptut to see the PDF";
|
||||
export const PDFViewConstant = "Expand the output to see the PDF";
|
||||
|
||||
export const CSVError = "Error loading CSV";
|
||||
|
||||
|
|
@ -709,7 +709,7 @@ export const TOOLTIP_HIDDEN_OUTPUTS = "Collapse hidden outputs";
|
|||
|
||||
export const ZERO_NOTIFICATIONS = "No new notifications";
|
||||
|
||||
export const SUCCESS_BUILD = "Built sucessfully ✨";
|
||||
export const SUCCESS_BUILD = "Built successfully ✨";
|
||||
|
||||
export const ALERT_SAVE_WITH_API =
|
||||
"Caution: Unchecking this box only removes API keys from fields specifically designated for API keys.";
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ export default function CsvSelect({ node, handleChangeSelect }): JSX.Element {
|
|||
return (
|
||||
<>
|
||||
<div className="flex justify-between">
|
||||
Expand the ouptut to see the CSV
|
||||
Expand the output to see the CSV
|
||||
</div>
|
||||
<div className="flex items-center justify-between pt-5">
|
||||
<span>CSV separator </span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue