> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agicto.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Flowise 集成

> 在 Flowise 中使用 AGICTO API 构建可视化 AI 工作流

Flowise 可以通过 OpenAI 兼容节点接入 AGICTO API。适合构建聊天、RAG、工具调用和自动化工作流。

## 配置值

| 字段                   | 值                           |
| -------------------- | --------------------------- |
| API Key              | AGICTO API Key              |
| Base Path / Base URL | `https://api.agicto.cn/v1/` |
| Model Name           | 从模型列表复制的模型名                 |

## 配置步骤

<Steps>
  <Step title="添加 ChatOpenAI 节点">
    在 Flowise 中选择 OpenAI 或 ChatOpenAI 兼容节点。
  </Step>

  <Step title="配置凭据">
    将 API Key 设置为 AGICTO API Key。
  </Step>

  <Step title="配置 Base URL">
    将 Base URL 或 Base Path 设置为 `https://api.agicto.cn/v1/`。
  </Step>

  <Step title="填写模型名">
    从模型列表复制模型名，填入 Model Name。
  </Step>

  <Step title="运行测试">
    发送一个简单问题，确认节点返回结果。
  </Step>
</Steps>

## 常见组合

<CardGroup cols={2}>
  <Card title="聊天机器人" icon="message">
    ChatOpenAI + Memory + Prompt Template。
  </Card>

  <Card title="知识库问答" icon="database">
    Embeddings + Vector Store + Retriever + ChatOpenAI。
  </Card>
</CardGroup>

<Card title="OpenAI 兼容格式" icon="code" href="/guides/openai-compatible">
  查看 AGICTO API 的兼容格式和 SDK 配置。
</Card>
