mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Corrections. (#4127)
### What problem does this PR solve? ### Type of change - [x] Documentation Update
This commit is contained in:
@ -185,7 +185,7 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
|
||||
3. Use the pre-built Docker images and start up the server:
|
||||
|
||||
:::tip NOTE
|
||||
The command below downloads the `v0.15.0-slim` edition of the RAGFlow Docker image. Refer to the following table for descriptions of different RAGFlow editions. To download an RAGFlow edition different from `v0.14.1-slim`, update the `RAGFLOW_IMAGE` variable accordingly in **docker/.env** before using `docker compose` to start the server. For example: set `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1` for the full edition `v0.14.1`.
|
||||
The command below downloads the `v0.15.0-slim` edition of the RAGFlow Docker image. Refer to the following table for descriptions of different RAGFlow editions. To download an RAGFlow edition different from `v0.15.0-slim`, update the `RAGFLOW_IMAGE` variable accordingly in **docker/.env** before using `docker compose` to start the server. For example: set `RAGFLOW_IMAGE=infiniflow/ragflow:v0.15.0` for the full edition `v0.15.0`.
|
||||
:::
|
||||
|
||||
```bash
|
||||
|
||||
@ -2175,7 +2175,7 @@ curl --request POST \
|
||||
##### Request parameters
|
||||
|
||||
- `agent_id`: (*Path parameter*)
|
||||
The ID of the associated agent assistant.
|
||||
The ID of the associated agent.
|
||||
|
||||
#### Response
|
||||
|
||||
@ -2364,7 +2364,7 @@ curl --request POST \
|
||||
##### Request Parameters
|
||||
|
||||
- `agent_id`: (*Path parameter*), `string`
|
||||
The ID of the associated agent assistant.
|
||||
The ID of the associated agent.
|
||||
- `"question"`: (*Body Parameter*), `string`, *Required*
|
||||
The question to start an AI-powered conversation.
|
||||
- `"stream"`: (*Body Parameter*), `boolean`
|
||||
|
||||
@ -1412,7 +1412,7 @@ Creates a session with the current agent.
|
||||
- Success: A `Session` object containing the following attributes:
|
||||
- `id`: `str` The auto-generated unique identifier of the created session.
|
||||
- `message`: `list[Message]` The messages of the created session assistant. Default: `[{"role": "assistant", "content": "Hi! I am your assistant,can I help you?"}]`
|
||||
- `agent_id`: `str` The ID of the associated agent assistant.
|
||||
- `agent_id`: `str` The ID of the associated agent.
|
||||
- Failure: `Exception`
|
||||
|
||||
#### Examples
|
||||
|
||||
Reference in New Issue
Block a user