diff options
author | ggindinson <grisha.gindinson@gmail.com> | 2023-05-26 20:57:22 +0200 |
---|---|---|
committer | ggindinson <grisha.gindinson@gmail.com> | 2023-05-26 20:57:22 +0200 |
commit | 223f09a4f10ccfc369062ae8285b19627bacc3b2 (patch) | |
tree | ddffb97cf607d7a61e03c66b267c05d651b020c8 /testing | |
parent | Added support for AiColors (diff) | |
download | gpt4free-223f09a4f10ccfc369062ae8285b19627bacc3b2.tar gpt4free-223f09a4f10ccfc369062ae8285b19627bacc3b2.tar.gz gpt4free-223f09a4f10ccfc369062ae8285b19627bacc3b2.tar.bz2 gpt4free-223f09a4f10ccfc369062ae8285b19627bacc3b2.tar.lz gpt4free-223f09a4f10ccfc369062ae8285b19627bacc3b2.tar.xz gpt4free-223f09a4f10ccfc369062ae8285b19627bacc3b2.tar.zst gpt4free-223f09a4f10ccfc369062ae8285b19627bacc3b2.zip |
Diffstat (limited to '')
-rw-r--r-- | testing/aicolors_test.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/aicolors_test.py b/testing/aicolors_test.py new file mode 100644 index 00000000..853f7e45 --- /dev/null +++ b/testing/aicolors_test.py @@ -0,0 +1,6 @@ +from gpt4free import aicolors + +prompt = "Light green color" +req = aicolors.Completion.create(prompt=prompt) + +print(req) |