返回提交历史
Modified
.gitattributes
+1
-1
Modified
.github/FUNDING.yml
+1
-1
Modified
CODE_OF_CONDUCT.md
+1
-1
Modified
CONTRIBUTING.md
+1
-1
Modified
LEGAL_NOTICE.md
+1
-1
Modified
LICENSE
+1
-1
Modified
SECURITY.md
+1
-1
Modified
interference/app.py
+1
-1
Modified
setup.py
+1
-1
Modified
testing/interference_test.py
+2
-1
XFEstudio/gpt4free
~
0faeb0b5
代码差异
10 个文件
+11
-10
@@ -1,2 +1,2 @@
1
1
# Auto detect text files and perform LF normalization
2
* text=auto
2
* text=auto
@@ -1,3 +1,3 @@
1
1
github: [onlp]
2
2
patreon: xtekky
3
ko_fi: xtekky
3
ko_fi: xtekky
@@ -125,4 +125,4 @@ enforcement ladder](https://github.com/mozilla/diversity).
125
125
126
126
For answers to common questions about this code of conduct, see the FAQ at
127
127
https://www.contributor-covenant.org/faq. Translations are available at
128
https://www.contributor-covenant.org/translations.
128
https://www.contributor-covenant.org/translations.
@@ -5,4 +5,4 @@
5
5
2. Add it to [./testing](https://github.com/xtekky/gpt4free/tree/main/testing)
6
6
3. Refractor it and add it to [./g4f](https://github.com/xtekky/gpt4free/tree/main/g4f)
7
7
8
### We will be grateful to see you as a contributor!
8
### We will be grateful to see you as a contributor!
@@ -12,4 +12,4 @@ Please note the following:
12
12
13
13
4. **Indemnification**: Users agree to indemnify, defend, and hold harmless the author of this repository from and against any and all claims, liabilities, damages, losses, or expenses, including legal fees and costs, arising out of or in any way connected with their use or misuse of this repository, its content, or related third-party APIs.
14
14
15
5. **Updates and Changes**: The author reserves the right to modify, update, or remove any content, information, or features in this repository at any time without prior notice. Users are responsible for regularly reviewing the content and any changes made to this repository.
15
5. **Updates and Changes**: The author reserves the right to modify, update, or remove any content, information, or features in this repository at any time without prior notice. Users are responsible for regularly reviewing the content and any changes made to this repository.
@@ -671,4 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
671
671
may consider it more useful to permit linking proprietary applications with
672
672
the library. If this is what you want to do, use the GNU Lesser General
673
673
Public License instead of this License. But first, please read
674
<https://www.gnu.org/licenses/why-not-lgpl.html>.
674
<https://www.gnu.org/licenses/why-not-lgpl.html>.
@@ -1,4 +1,4 @@
1
1
## Reporting a Vulnerability
2
2
3
3
Reporting a Vulnerability
4
Please report (suspected) security vulnerabilities to https://t.me/xtekky. You will receive a response within 48 hours. If the issue is confirmed, we will release a patch as soon as possible depending on complexity but historically within a few days.
4
Please report (suspected) security vulnerabilities to https://t.me/xtekky. You will receive a response within 48 hours. If the issue is confirmed, we will release a patch as soon as possible depending on complexity but historically within a few days.
@@ -83,4 +83,4 @@ if __name__ == '__main__':
83
83
'debug': True
84
84
}
85
85
86
app.run(**config)
86
app.run(**config)
@@ -33,4 +33,4 @@ setup(
33
33
"Operating System :: MacOS :: MacOS X",
34
34
"Operating System :: Microsoft :: Windows",
35
35
]
36
)
36
)
@@ -12,4 +12,5 @@ for token in chat_completion:
12
12
13
13
content = token['choices'][0]['delta'].get('content')
14
14
if content != None:
15
print(content)
15
print(content)
16