python-fastllm 0.0.44__tar.gz → 0.0.45__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.44 → python_fastllm-0.0.45}/PKG-INFO +1 -2
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/__init__.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/acomplete.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/anthropic.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/gemini.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/openai_chat.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/openai_responses.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/responses.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/streaming.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/types.py +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/pyproject.toml +1 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/PKG-INFO +1 -2
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/requires.txt +0 -1
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/README.md +0 -0
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/_modidx.py +0 -0
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/chat.py +0 -0
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/codex.py +0 -0
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/SOURCES.txt +0 -0
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/dependency_links.txt +0 -0
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/entry_points.txt +0 -0
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/top_level.txt +0 -0
- {python_fastllm-0.0.44 → python_fastllm-0.0.45}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-fastllm
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.45
|
|
4
4
|
Author-email: Kerem Turgutlu <keremturgutlu@gmail.com>
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Repository, https://github.com/AnswerDotAI/fastllm
|
|
@@ -11,7 +11,6 @@ Requires-Python: >=3.10
|
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
Requires-Dist: fastcore>=2.1.18
|
|
13
13
|
Requires-Dist: aidialog>=0.0.10
|
|
14
|
-
Requires-Dist: fastspec>=0.2.1
|
|
15
14
|
Requires-Dist: fasttransport>=0.0.2
|
|
16
15
|
Requires-Dist: pillow
|
|
17
16
|
|
|
@@ -10,7 +10,7 @@ import asyncio,json,httpx2
|
|
|
10
10
|
from fastcore.utils import *
|
|
11
11
|
from fastcore.meta import *
|
|
12
12
|
from fasttransport.core import AsyncHttpCli
|
|
13
|
-
from
|
|
13
|
+
from fasttransport.errors import APIError
|
|
14
14
|
|
|
15
15
|
from .types import *
|
|
16
16
|
from aidialog.msg_parts import (Part, PartType, Msg, Text, Thinking, ToolUse, ToolResult, InputImage, InputAudio, InputVideo,
|
|
@@ -12,7 +12,7 @@ import json
|
|
|
12
12
|
from collections import Counter
|
|
13
13
|
from fastcore.utils import *
|
|
14
14
|
from fastcore.meta import *
|
|
15
|
-
from
|
|
15
|
+
from fasttransport.errors import api_error_from_event
|
|
16
16
|
|
|
17
17
|
from .types import *
|
|
18
18
|
from aidialog.msg_parts import (Part, PartType, mk_part, Msg, Text, Thinking, ToolUse, ToolResult, tool_text, ServerToolResult,
|
|
@@ -12,7 +12,7 @@ import json
|
|
|
12
12
|
from collections import Counter
|
|
13
13
|
from fastcore.utils import *
|
|
14
14
|
from fastcore.meta import *
|
|
15
|
-
from
|
|
15
|
+
from fasttransport.errors import api_error_from_event
|
|
16
16
|
|
|
17
17
|
from .types import *
|
|
18
18
|
from aidialog.msg_parts import (Part, PartType, Msg, Text, Thinking, ToolUse, ToolResult, tool_text,
|
|
@@ -12,7 +12,7 @@ import json
|
|
|
12
12
|
from collections import Counter
|
|
13
13
|
from fastcore.utils import *
|
|
14
14
|
from fastcore.meta import *
|
|
15
|
-
from
|
|
15
|
+
from fasttransport.errors import api_error_from_event
|
|
16
16
|
|
|
17
17
|
from .types import *
|
|
18
18
|
from aidialog.msg_parts import (Part, PartType, Msg, Text, Thinking, Refusal, ToolUse, ToolResult, tool_text,
|
|
@@ -12,7 +12,7 @@ import json
|
|
|
12
12
|
from collections import Counter
|
|
13
13
|
from fastcore.utils import *
|
|
14
14
|
from fastcore.meta import *
|
|
15
|
-
from
|
|
15
|
+
from fasttransport.errors import api_error_from_event
|
|
16
16
|
|
|
17
17
|
from .types import *
|
|
18
18
|
from aidialog.msg_parts import (Completion, Part, PartType, Msg, Text, Thinking, Refusal, ToolUse, ToolResult, tool_text,
|
|
@@ -17,7 +17,7 @@ __all__ = ['ResponsesError', 'response_input', 'normalize_call_ids', 'response_o
|
|
|
17
17
|
# %% ../nbs/06a_responses.ipynb #e16fc24e
|
|
18
18
|
import asyncio, json, secrets, time
|
|
19
19
|
from fastcore.utils import *
|
|
20
|
-
from
|
|
20
|
+
from fasttransport.errors import APIError
|
|
21
21
|
|
|
22
22
|
from .acomplete import acomplete
|
|
23
23
|
from .streaming import Status
|
|
@@ -10,7 +10,7 @@ __all__ = ['Delta', 'norm_and_yield', 'PrintStream', 'PartAccum', 'FenceToolStop
|
|
|
10
10
|
import json,copy
|
|
11
11
|
from fastcore.utils import *
|
|
12
12
|
from fastcore.meta import delegates
|
|
13
|
-
from
|
|
13
|
+
from fasttransport.errors import *
|
|
14
14
|
from .types import *
|
|
15
15
|
from aidialog.msg_parts import Part, PartType, Msg, Text, Thinking, ToolUse, ToolResult, ServerToolResult, mk_part, fence_call_re, Completion
|
|
16
16
|
|
|
@@ -14,7 +14,7 @@ __all__ = ['FinishReason', 'api_registry', 'model_prices_url', 'haik45', 'sonn45
|
|
|
14
14
|
# %% ../nbs/00_types.ipynb #b4d047fd
|
|
15
15
|
import httpx2, base64, io
|
|
16
16
|
from fasttransport.core import AsyncHttpCli
|
|
17
|
-
import
|
|
17
|
+
import fasttransport.errors # patches httpx2 exceptions with .api_error(), which provider_req relies on
|
|
18
18
|
from importlib.metadata import entry_points
|
|
19
19
|
from datetime import datetime, timezone
|
|
20
20
|
from fastcore.utils import *
|
|
@@ -15,7 +15,7 @@ classifiers = [
|
|
|
15
15
|
"Programming Language :: Python :: 3",
|
|
16
16
|
"Programming Language :: Python :: 3 :: Only",
|
|
17
17
|
]
|
|
18
|
-
dependencies = ['fastcore>=2.1.18', 'aidialog>=0.0.10', '
|
|
18
|
+
dependencies = ['fastcore>=2.1.18', 'aidialog>=0.0.10', 'fasttransport>=0.0.2', 'pillow']
|
|
19
19
|
|
|
20
20
|
[project.urls]
|
|
21
21
|
Repository = "https://github.com/AnswerDotAI/fastllm"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-fastllm
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.45
|
|
4
4
|
Author-email: Kerem Turgutlu <keremturgutlu@gmail.com>
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Repository, https://github.com/AnswerDotAI/fastllm
|
|
@@ -11,7 +11,6 @@ Requires-Python: >=3.10
|
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
Requires-Dist: fastcore>=2.1.18
|
|
13
13
|
Requires-Dist: aidialog>=0.0.10
|
|
14
|
-
Requires-Dist: fastspec>=0.2.1
|
|
15
14
|
Requires-Dist: fasttransport>=0.0.2
|
|
16
15
|
Requires-Dist: pillow
|
|
17
16
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|