Merging PR_218 openai_rev package with new streamlit chat app

This commit is contained in:
noptuno
2023-04-27 20:29:30 -04:00
parent 479b8d6d10
commit 355dee533b
8378 changed files with 2931636 additions and 3 deletions

View File

@@ -0,0 +1,61 @@
from functools import total_ordering
@total_ordering
class Min(object):
"""
An object that is less than any other object (except itself).
Inspired by https://pypi.python.org/pypi/Extremes
Examples::
>>> import sys
>>> Min < -sys.maxint
True
>>> Min < None
True
>>> Min < ''
True
.. versionadded:: 0.2
"""
def __lt__(self, other):
if other is Min:
return False
return True
@total_ordering
class Max(object):
"""
An object that is greater than any other object (except itself).
Inspired by https://pypi.python.org/pypi/Extremes
Examples::
>>> import sys
>>> Max > Min
True
>>> Max > sys.maxint
True
>>> Max > 99999999999999999
True
.. versionadded:: 0.2
"""
def __gt__(self, other):
if other is Max:
return False
return True
Min = Min()
Max = Max()