Updated obsolete faqs (#3575)

### What problem does this PR solve?

### Type of change

- [x] Documentation Update
This commit is contained in:
Kevin Hu
2024-11-22 11:11:06 +08:00
committed by GitHub
parent 482c1b59c8
commit 811c49d7a2
6 changed files with 239 additions and 225 deletions

View File

@ -1332,8 +1332,8 @@ The question to start an AI-powered conversation.
Indicates whether to output responses in a streaming way:
- `True`: Enable streaming.
- `False`: Disable streaming (default).
- `True`: Enable streaming (default).
- `False`: Disable streaming.
### Returns
@ -1450,8 +1450,8 @@ The question to start an AI-powered conversation.
Indicates whether to output responses in a streaming way:
- `True`: Enable streaming.
- `False`: Disable streaming (default).
- `True`: Enable streaming (default).
- `False`: Disable streaming.
### Returns
@ -1513,4 +1513,4 @@ while True:
for ans in session.ask(question, stream=True):
print(ans.content[len(cont):], end='', flush=True)
cont = ans.content
```
```