|
@@ -476,14 +476,19 @@ import { Row, Col, Properties, Property, Heading, SubProperty } from '../md.tsx'
|
|
|
</Col>
|
|
|
<Col sticky>
|
|
|
|
|
|
- <CodeGroup title="Request" tag="POST" label="/text-to-audio" targetCode={`curl --location --request POST '${props.appDetail.api_base_url}/text-to-audio' \\\n--header 'Authorization: Bearer ENTER-YOUR-SECRET-KEY' \\\n--form 'text=你好Dify;user=abc-123;streaming=false`}>
|
|
|
+ <CodeGroup title="Request" tag="POST" label="/text-to-audio" targetCode={`curl -o text-to-audio.mp3 -X POST '${props.appDetail.api_base_url}/text-to-audio' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n "text": "你好Dify",\n "user": "abc-123",\n "streaming": false\n}'`}>
|
|
|
|
|
|
```bash {{ title: 'cURL' }}
|
|
|
- curl --location --request POST '${props.appDetail.api_base_url}/text-to-audio' \
|
|
|
- --header 'Authorization: Bearer ENTER-YOUR-SECRET-KEY' \
|
|
|
- --form 'file=你好Dify;user=abc-123;streaming=false'
|
|
|
+ curl -o text-to-audio.mp3 -X POST '${props.appDetail.api_base_url}/text-to-audio' \
|
|
|
+ --header 'Authorization: Bearer {api_key}' \
|
|
|
+ --header 'Content-Type: application/json' \
|
|
|
+ --data-raw '{
|
|
|
+ "text": "你好Dify",
|
|
|
+ "user": "abc-123",
|
|
|
+ "streaming": false
|
|
|
+ }'
|
|
|
```
|
|
|
-
|
|
|
+
|
|
|
</CodeGroup>
|
|
|
|
|
|
<CodeGroup title="headers">
|