summaryrefslogtreecommitdiffstats
path: root/gpt4free/oraai/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'gpt4free/oraai/README.md')
-rw-r--r--gpt4free/oraai/README.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/gpt4free/oraai/README.md b/gpt4free/oraai/README.md
new file mode 100644
index 00000000..6f538711
--- /dev/null
+++ b/gpt4free/oraai/README.md
@@ -0,0 +1,20 @@
+# OraAI
+Written by [hp_mzx](https://github.com/hpsj).
+
+## Examples:
+### Completion:
+```python
+chunk = oraai.Completion.create("who are you")
+print(chunk)
+```
+
+### Chat Completion:
+Support context
+```python
+obj = oraai.Completion()
+whilt True:
+ prompt = input("Please enter a question:")
+ chunk = obj.create(prompt)
+ print(chunk)
+print()
+``` \ No newline at end of file