python-fastllm 0.0.19__tar.gz → 0.0.20__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/PKG-INFO +1 -1
- python_fastllm-0.0.20/fastllm/__init__.py +1 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/chat.py +2 -2
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/python_fastllm.egg-info/PKG-INFO +1 -1
- python_fastllm-0.0.19/fastllm/__init__.py +0 -1
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/README.md +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/_modidx.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/acomplete.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/anthropic.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/codex.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/gemini.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/openai_chat.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/openai_responses.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/specs/anthropic.json +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/specs/anthropic.yml +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/specs/gemini.json +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/specs/openai.with-code-samples.json +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/specs/openai.with-code-samples.yml +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/specs/spec_manifest.json +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/streaming.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/fastllm/types.py +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/pyproject.toml +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/python_fastllm.egg-info/SOURCES.txt +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/python_fastllm.egg-info/dependency_links.txt +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/python_fastllm.egg-info/entry_points.txt +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/python_fastllm.egg-info/requires.txt +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/python_fastllm.egg-info/top_level.txt +0 -0
- {python_fastllm-0.0.19 → python_fastllm-0.0.20}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.20"
|
|
@@ -116,7 +116,7 @@ re_token = re.compile(fr"^{re.escape(token_dtls_tag)}\n*<summary>.*?</summary>\n
|
|
|
116
116
|
_fence_back = '`````'
|
|
117
117
|
_fence_re = re.compile(f'^{_fence_back}(py|bash)\n(.*?)\n{_fence_back}$', re.DOTALL | re.MULTILINE)
|
|
118
118
|
_result_re = re.compile(f'\n{_fence_back}result\n(.*?)\n{_fence_back}\n', re.DOTALL)
|
|
119
|
-
_lang2tool = dict(py='
|
|
119
|
+
_lang2tool = dict(py='python', bash='bash')
|
|
120
120
|
|
|
121
121
|
class FenceToolStop:
|
|
122
122
|
def __init__(self, langs): self.langs = langs
|
|
@@ -320,7 +320,7 @@ def _trunc_str(s, mx=2000, skip=10, replace="TRUNCATED"):
|
|
|
320
320
|
if len(s)>2 and s[0]=='𝍁' and s[-1]=='𝍁':
|
|
321
321
|
s = s[1:-1]
|
|
322
322
|
if replace: return s
|
|
323
|
-
if isinstance_str(s, ('FullResponse','Safe')): return s
|
|
323
|
+
if isinstance_str(s, ('FullResponse','Safe','PrettyString')): return s
|
|
324
324
|
if len(s)<=mx: return s
|
|
325
325
|
s = s[skip:mx-skip]
|
|
326
326
|
ss = s.split(' ')
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.0.19"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_fastllm-0.0.19 → python_fastllm-0.0.20}/python_fastllm.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|