mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-03 05:34:01 +00:00
this pr also drops the community added action for checking broken links in mdx. It does not work well for our use case, throwing errors for local paths, plus the rest of the errors our in house solution had.
18 lines
633 B
Plaintext
18 lines
633 B
Plaintext
# Nebula
|
|
|
|
This page covers how to use [Nebula](https://symbl.ai/nebula), [Symbl.ai](https://symbl.ai/)'s LLM, ecosystem within LangChain.
|
|
It is broken into two parts: installation and setup, and then references to specific Nebula wrappers.
|
|
|
|
## Installation and Setup
|
|
|
|
- Get an [Nebula API Key](https://info.symbl.ai/Nebula_Private_Beta.html) and set as environment variable `NEBULA_API_KEY`
|
|
- Please see the [Nebula documentation](https://docs.symbl.ai/docs/nebula-llm) for more details.
|
|
|
|
### LLM
|
|
|
|
There exists an Nebula LLM wrapper, which you can access with
|
|
```python
|
|
from langchain_community.llms import Nebula
|
|
llm = Nebula()
|
|
```
|