返回提交历史
Modified
Dockerfile
+1
-1
Modified
README.md
+0
-3
Modified
docker-compose.yml
+1
-1
Modified
interference/app.py
+1
-1
Modified
requirements.txt
+1
-1
Modified
testing/log_time.py
+1
-1
Modified
tool/provider_init.py
+1
-1
XFEstudio/gpt4free
~
a5519223
代码差异
7 个文件
+6
-9
@@ -30,4 +30,4 @@ COPY . /app/
30
30
RUN pip install -r interference/requirements.txt
31
31
32
32
# Define the default command to run the app using Python's module mode.
33
CMD ["python", "-m", "interference.app"]
33
CMD ["python", "-m", "interference.app"]
@@ -2,9 +2,6 @@
2
2
3
3
By using this repository or any code related to it, you agree to the [legal notice](./LEGAL_NOTICE.md). The author is not responsible for any copies, forks, reuploads made by other users, or anything else related to gpt4free. This is the author's only account and repository. To prevent impersonation or irresponsible actions, please comply with the GNU GPL license this Repository uses.
4
4
5
This (quite censored) New Version of gpt4free, was just released so it may contain bugs. Please open an issue or contribute a PR when encountering one.
6
P.S: Docker is for now not available but I would be happy if someone contributes a PR. The g4f GUI will be uploaded soon enough.
7
8
5
### New
9
6
10
7
- pypi package:
@@ -10,4 +10,4 @@ services:
10
10
ports:
11
11
- '1337:1337'
12
12
environment:
13
- PYTHONUNBUFFERED=1
13
- PYTHONUNBUFFERED=1
@@ -93,4 +93,4 @@ def main():
93
93
94
94
95
95
if __name__ == "__main__":
96
main()
96
main()
@@ -9,4 +9,4 @@ js2py
9
9
quickjs
10
10
flask
11
11
flask-cors
12
typing-extensions
12
typing-extensions
@@ -22,4 +22,4 @@ def log_time(method: callable, **kwargs):
22
22
secs = f"{round(time() - start, 2)} secs"
23
23
if result:
24
24
return " ".join([result, secs])
25
return secs
25
return secs
@@ -30,4 +30,4 @@ def create_content():
30
30
31
31
32
32
if __name__ == "__main__":
33
main()
33
main()