diff --git a/fern/assets/img/integrations/activepieces.png b/fern/assets/img/integrations/activepieces.png new file mode 100644 index 00000000..9faf5bfa Binary files /dev/null and b/fern/assets/img/integrations/activepieces.png differ diff --git a/fern/assets/img/integrations/amazon-connect.png b/fern/assets/img/integrations/amazon-connect.png new file mode 100644 index 00000000..d43020cf Binary files /dev/null and b/fern/assets/img/integrations/amazon-connect.png differ diff --git a/fern/assets/img/integrations/bubble.png b/fern/assets/img/integrations/bubble.png new file mode 100644 index 00000000..922908d3 Binary files /dev/null and b/fern/assets/img/integrations/bubble.png differ diff --git a/fern/assets/img/integrations/cloudflare.png b/fern/assets/img/integrations/cloudflare.png new file mode 100644 index 00000000..ae2b72d5 Binary files /dev/null and b/fern/assets/img/integrations/cloudflare.png differ diff --git a/fern/assets/img/integrations/genesys.png b/fern/assets/img/integrations/genesys.png new file mode 100644 index 00000000..c928e9ad Binary files /dev/null and b/fern/assets/img/integrations/genesys.png differ diff --git a/fern/assets/img/integrations/haystack.png b/fern/assets/img/integrations/haystack.png new file mode 100644 index 00000000..ba3acc48 Binary files /dev/null and b/fern/assets/img/integrations/haystack.png differ diff --git a/fern/assets/img/integrations/langchain.png b/fern/assets/img/integrations/langchain.png new file mode 100644 index 00000000..07551f1e --- /dev/null +++ b/fern/assets/img/integrations/langchain.png @@ -0,0 +1,141 @@ +LangChain overview - Docs by LangChain
Skip to main content
LangChain v1.0 is now available!For a complete list of changes and instructions on how to upgrade your code, see the release notes and migration guide.If you encounter any issues or have feedback, please open an issue so we can improve. To view v0.x documentation, go to the archived content.
+LangChain is the easiest way to start building agents and applications powered by LLMs. With under 10 lines of code, you can connect to OpenAI, Anthropic, Google, and more. LangChain provides a pre-built agent architecture and model integrations to help you get started quickly and seamlessly incorporate LLMs into your agents and applications. +We recommend you use LangChain if you want to quickly build agents and autonomous applications. Use LangGraph, our low-level agent orchestration framework and runtime, when you have more advanced needs that require a combination of deterministic and agentic workflows, heavy customization, and carefully controlled latency. +LangChain agents are built on top of LangGraph in order to provide durable execution, streaming, human-in-the-loop, persistence, and more. You do not need to know LangGraph for basic LangChain agent usage. +

Install

+
pip install -U langchain
+# Requires Python 3.10+
+
+

Create an agent

+
# pip install -qU "langchain[anthropic]" to call the model
+
+from langchain.agents import create_agent
+
+def get_weather(city: str) -> str:
+    """Get weather for a given city."""
+    return f"It's always sunny in {city}!"
+
+agent = create_agent(
+    model="claude-sonnet-4-5-20250929",
+    tools=[get_weather],
+    system_prompt="You are a helpful assistant",
+)
+
+# Run the agent
+agent.invoke(
+    {"messages": [{"role": "user", "content": "what is the weather in sf"}]}
+)
+
+

Core benefits

+ +
+ +
Connect these docs programmatically to Claude, VSCode, and more via MCP for real-time answers.
\ No newline at end of file diff --git a/fern/assets/img/integrations/make.png b/fern/assets/img/integrations/make.png new file mode 100644 index 00000000..e06e3861 Binary files /dev/null and b/fern/assets/img/integrations/make.png differ diff --git a/fern/assets/img/integrations/pipedream.png b/fern/assets/img/integrations/pipedream.png new file mode 100644 index 00000000..76e7a8cb Binary files /dev/null and b/fern/assets/img/integrations/pipedream.png differ diff --git a/fern/assets/img/integrations/postman.png b/fern/assets/img/integrations/postman.png new file mode 100644 index 00000000..2bddcd82 Binary files /dev/null and b/fern/assets/img/integrations/postman.png differ diff --git a/fern/assets/img/integrations/power-automate.png b/fern/assets/img/integrations/power-automate.png new file mode 100644 index 00000000..a6dc08fe Binary files /dev/null and b/fern/assets/img/integrations/power-automate.png differ diff --git a/fern/assets/img/integrations/recall.png b/fern/assets/img/integrations/recall.png new file mode 100644 index 00000000..1f77c0b7 Binary files /dev/null and b/fern/assets/img/integrations/recall.png differ diff --git a/fern/assets/img/integrations/relay.png b/fern/assets/img/integrations/relay.png new file mode 100644 index 00000000..af2533a5 Binary files /dev/null and b/fern/assets/img/integrations/relay.png differ diff --git a/fern/assets/img/integrations/semantic-kernel.png b/fern/assets/img/integrations/semantic-kernel.png new file mode 100644 index 00000000..a6dc08fe Binary files /dev/null and b/fern/assets/img/integrations/semantic-kernel.png differ diff --git a/fern/assets/img/integrations/telnyx.png b/fern/assets/img/integrations/telnyx.png new file mode 100644 index 00000000..04517076 Binary files /dev/null and b/fern/assets/img/integrations/telnyx.png differ diff --git a/fern/assets/img/integrations/twilio.png b/fern/assets/img/integrations/twilio.png new file mode 100644 index 00000000..b14f7e69 Binary files /dev/null and b/fern/assets/img/integrations/twilio.png differ diff --git a/fern/assets/img/integrations/twilio.svg b/fern/assets/img/integrations/twilio.svg new file mode 100644 index 00000000..e1ca8786 --- /dev/null +++ b/fern/assets/img/integrations/twilio.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/fern/assets/img/integrations/zapier.png b/fern/assets/img/integrations/zapier.png new file mode 100644 index 00000000..e3b3b3b8 Binary files /dev/null and b/fern/assets/img/integrations/zapier.png differ diff --git a/fern/assets/img/integrations/zoom.png b/fern/assets/img/integrations/zoom.png new file mode 100644 index 00000000..9840ed83 Binary files /dev/null and b/fern/assets/img/integrations/zoom.png differ diff --git a/fern/pages/06-integrations/index.mdx b/fern/pages/06-integrations/index.mdx index 69d20937..feb01914 100644 --- a/fern/pages/06-integrations/index.mdx +++ b/fern/pages/06-integrations/index.mdx @@ -41,19 +41,23 @@ AssemblyAI seamlessly integrates with a variety of tools and platforms to enhanc ## No-code tools - + } + href="/docs/integrations/zapier" + > Connect AssemblyAI with 5000+ apps using Zapier's automation platform. } href="/docs/integrations/make" > Build complex automation scenarios with Make's visual workflow builder. } href="/docs/integrations/postman" > Test and explore AssemblyAI's APIs using Postman collections. @@ -63,10 +67,20 @@ AssemblyAI seamlessly integrates with a variety of tools and platforms to enhanc ## Meeting transcriber tools - + + } + href="/docs/integrations/recall" + > Setup a Zoom meeting bot with AssemblyAI and Recall.ai. - + } + href="/docs/integrations/zoom-rtms" + > Integrate AssemblyAI with Zoom RTMS for meeting transcription. @@ -74,15 +88,28 @@ AssemblyAI seamlessly integrates with a variety of tools and platforms to enhanc ## Telephony tools - + } + href="/docs/integrations/telnyx" + > Build voice agents with Telnyx and AssemblyAI using Pipecat or LiveKit. - + } + href="/docs/integrations/twilio" + > Process audio from Twilio calls and voice messages. + } href="/docs/integrations/amazon-connect" > Setup a transcription pipeline for Amazon Connect recordings with @@ -90,7 +117,12 @@ AssemblyAI seamlessly integrates with a variety of tools and platforms to enhanc + } href="/docs/integrations/genesys-cloud" > Setup a transcription pipeline for Genesys Cloud to AssemblyAI. @@ -102,7 +134,9 @@ AssemblyAI seamlessly integrates with a variety of tools and platforms to enhanc + } href="/docs/integrations/langchain" > Integrate AssemblyAI with LangChain for advanced language model @@ -110,7 +144,12 @@ AssemblyAI seamlessly integrates with a variety of tools and platforms to enhanc + } href="/docs/integrations/power-automate" > Create automated workflows with Microsoft Power Automate to process audio @@ -118,49 +157,68 @@ AssemblyAI seamlessly integrates with a variety of tools and platforms to enhanc + } href="/docs/integrations/semantic-kernel" > Use AssemblyAI with Microsoft's Semantic Kernel framework. + } href="/docs/integrations/activepieces" > Create automated workflows with this open-source alternative to Zapier. + } href="/docs/integrations/haystack" > Build production-ready NLP applications with Haystack integration. + } href="https://www.assemblyai.com/blog/transcribe-audio-cloudflare-workers-assemblyai-nodejs-typescript/" > Transcribe audio with Cloudflare Workers and AssemblyAI. } href="https://www.relay.app/apps/assemblyai/integrations" > Use AssemblyAI with Relay.app's workflow automation platform. } href="https://bubble.io/plugin/assemblyai-realtime-transcription-1666200218972x408222199372578800" > Add speech-to-text capabilities to your Bubble.io no-code applications. + } href="https://pipedream.com/apps/assemblyai" > Build event-driven workflows with Pipedream's integration platform.