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.
Files changed (22) hide show
  1. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/PKG-INFO +1 -2
  2. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/__init__.py +1 -1
  3. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/acomplete.py +1 -1
  4. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/anthropic.py +1 -1
  5. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/gemini.py +1 -1
  6. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/openai_chat.py +1 -1
  7. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/openai_responses.py +1 -1
  8. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/responses.py +1 -1
  9. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/streaming.py +1 -1
  10. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/types.py +1 -1
  11. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/pyproject.toml +1 -1
  12. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/PKG-INFO +1 -2
  13. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/requires.txt +0 -1
  14. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/README.md +0 -0
  15. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/_modidx.py +0 -0
  16. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/chat.py +0 -0
  17. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/fastllm/codex.py +0 -0
  18. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/SOURCES.txt +0 -0
  19. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/dependency_links.txt +0 -0
  20. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/entry_points.txt +0 -0
  21. {python_fastllm-0.0.44 → python_fastllm-0.0.45}/python_fastllm.egg-info/top_level.txt +0 -0
  22. {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.44
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
 
@@ -2,4 +2,4 @@
2
2
 
3
3
  - `fastllm.responses`: Provider-independent Responses resources and streaming over FastLLM"""
4
4
 
5
- __version__ = "0.0.44"
5
+ __version__ = "0.0.45"
@@ -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 fastspec.errors import APIError
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 fastspec.errors import api_error_from_event
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 fastspec.errors import api_error_from_event
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 fastspec.errors import api_error_from_event
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 fastspec.errors import api_error_from_event
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 fastspec.errors import APIError
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 fastspec.errors import *
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 fastspec.errors # patches httpx2 exceptions with .api_error(), which provider_req relies on
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', 'fastspec>=0.2.1', 'fasttransport>=0.0.2', 'pillow']
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.44
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
 
@@ -1,5 +1,4 @@
1
1
  fastcore>=2.1.18
2
2
  aidialog>=0.0.10
3
- fastspec>=0.2.1
4
3
  fasttransport>=0.0.2
5
4
  pillow