langchain/docs/docs/integrations
Xudong Sun 019b6ebe8d
community[minor]: Add iFlyTek Spark LLM chat model support (#13389)
- **Description:** This PR enables LangChain to access the iFlyTek's
Spark LLM via the chat_models wrapper.
  - **Dependencies:** websocket-client ^1.6.1
  - **Tag maintainer:** @baskaryan 

### SparkLLM chat model usage

Get SparkLLM's app_id, api_key and api_secret from [iFlyTek SparkLLM API
Console](https://console.xfyun.cn/services/bm3) (for more info, see
[iFlyTek SparkLLM Intro](https://xinghuo.xfyun.cn/sparkapi) ), then set
environment variables `IFLYTEK_SPARK_APP_ID`, `IFLYTEK_SPARK_API_KEY`
and `IFLYTEK_SPARK_API_SECRET` or pass parameters when using it like the
demo below:

```python3
from langchain.chat_models.sparkllm import ChatSparkLLM

client = ChatSparkLLM(
    spark_app_id="<app_id>",
    spark_api_key="<api_key>",
    spark_api_secret="<api_secret>"
)
```
2024-01-23 19:23:46 -08:00
..
adapters docs[patch]: fix ipynb links (#14325) 2023-12-06 09:29:07 -08:00
callbacks community: Add CometLLM tracing context var (#15765) 2024-01-22 15:17:16 -08:00
chat community[minor]: Add iFlyTek Spark LLM chat model support (#13389) 2024-01-23 19:23:46 -08:00
chat_loaders docs: integration package pip installs (#15762) 2024-01-09 11:13:10 -08:00
document_loaders community[minor]: New documents loader for visio files (with extension .vsdx) (#16171) 2024-01-22 22:07:03 -08:00
document_transformers docs: integration package pip installs (#15762) 2024-01-09 11:13:10 -08:00
llms community[minor]: Adding Konko Completion endpoint (#15570) 2024-01-23 18:22:32 -08:00
memory docs: Update redis_chat_message_history.ipynb (#16344) 2024-01-22 21:59:59 -08:00
platforms docs: add the enrollment form forBigQueryVectorSearch (#16240) 2024-01-18 18:34:06 -08:00
providers community[minor]: Add KDBAI vector store (#12797) 2024-01-23 18:37:01 -08:00
retrievers docs: fix links (#16284) 2024-01-19 08:51:12 -08:00
stores community: SQLStrStore/SQLDocStore provide an easy SQL alternative to InMemoryStore to persist data remotely in a SQL storage (#15909) 2024-01-23 16:50:48 -08:00
text_embedding docs: transport and client options docs (#16226) 2024-01-18 12:23:04 -08:00
toolkits docs: Minor update to Robocorp toolkit docs (#16399) 2024-01-22 11:33:13 -08:00
tools docs: Updated integration docs structure for tools/arxiv (#16091) (#16250) 2024-01-22 14:34:22 -08:00
vectorstores community[minor]: Add KDBAI vector store (#12797) 2024-01-23 18:37:01 -08:00