summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-28 10:06:17 +0200
committerGitHub <noreply@github.com>2023-04-28 10:06:17 +0200
commit19769b8982262961921d4928810af80effff497b (patch)
tree3ee33bc53500a9743f6949004f2865bfe068a985
parentMerge pull request #222 from 9fo/main (diff)
parentUpdate README.md (diff)
downloadgpt4free-19769b8982262961921d4928810af80effff497b.tar
gpt4free-19769b8982262961921d4928810af80effff497b.tar.gz
gpt4free-19769b8982262961921d4928810af80effff497b.tar.bz2
gpt4free-19769b8982262961921d4928810af80effff497b.tar.lz
gpt4free-19769b8982262961921d4928810af80effff497b.tar.xz
gpt4free-19769b8982262961921d4928810af80effff497b.tar.zst
gpt4free-19769b8982262961921d4928810af80effff497b.zip
-rw-r--r--quora/README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/quora/README.md b/quora/README.md
index 1acd4a6e..24679277 100644
--- a/quora/README.md
+++ b/quora/README.md
@@ -1,4 +1,5 @@
-#### warning !!!
+
+> ⚠ Warning !!!
poe.com added security and can detect if you are making automated requests. You may get your account banned if you are using this api.
The normal non-driver api is also currently not very stable
@@ -16,7 +17,7 @@ models = {
}
```
-#### !! new: bot creation
+### New: bot creation
```python
# import quora (poe) package
@@ -43,7 +44,7 @@ for response in quora.StreamingCompletion.create(
print(response.completion.choices[0].text)
```
-#### Normal Response:
+### Normal Response:
```python
response = quora.Completion.create(model = 'gpt-4',
@@ -53,7 +54,7 @@ response = quora.Completion.create(model = 'gpt-4',
print(response.completion.choices[0].text)
```
-#### Update Use This For Poe
+### Update Use This For Poe
```python
from quora import Poe