summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTekky <98614666+xtekky@users.noreply.github.com>2023-11-07 13:54:09 +0100
committerGitHub <noreply@github.com>2023-11-07 13:54:09 +0100
commit722f25039f78a9250f436e8ba945c0831acd0fa6 (patch)
tree4efb607e075fb9e35b2b368c5a25932b0a7d890b
parentMerge pull request #1215 from SamirXR/main (diff)
parentfix: no module named 'flask' (#1216) (diff)
downloadgpt4free-722f25039f78a9250f436e8ba945c0831acd0fa6.tar
gpt4free-722f25039f78a9250f436e8ba945c0831acd0fa6.tar.gz
gpt4free-722f25039f78a9250f436e8ba945c0831acd0fa6.tar.bz2
gpt4free-722f25039f78a9250f436e8ba945c0831acd0fa6.tar.lz
gpt4free-722f25039f78a9250f436e8ba945c0831acd0fa6.tar.xz
gpt4free-722f25039f78a9250f436e8ba945c0831acd0fa6.tar.zst
gpt4free-722f25039f78a9250f436e8ba945c0831acd0fa6.zip
-rw-r--r--g4f/Provider/Phind.py2
-rw-r--r--requirements.txt1
2 files changed, 2 insertions, 1 deletions
diff --git a/g4f/Provider/Phind.py b/g4f/Provider/Phind.py
index 0e698cba..8f3e7942 100644
--- a/g4f/Provider/Phind.py
+++ b/g4f/Provider/Phind.py
@@ -80,4 +80,4 @@ class Phind(AsyncGeneratorProvider):
("timeout", "int"),
]
param = ", ".join([": ".join(p) for p in params])
- return f"g4f.provider.{cls.__name__} supports: ({param})"
+ return f"g4f.provider.{cls.__name__} supports: ({param})" \ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
index ffadf62a..7f2823f8 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -20,3 +20,4 @@ numpy
asgiref
fastapi
uvicorn
+flask \ No newline at end of file