praisonaiagents 0.0.113__py3-none-any.whl → 0.0.115__py3-none-any.whl

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.
@@ -20,6 +20,18 @@ logging.basicConfig(level=logging.WARNING)
20
20
 
21
21
  # Import after suppressing warnings
22
22
  from .llm import LLM, LLMContextLengthExceededException
23
+ from .openai_client import (
24
+ OpenAIClient,
25
+ get_openai_client,
26
+ ChatCompletionMessage,
27
+ Choice,
28
+ CompletionTokensDetails,
29
+ PromptTokensDetails,
30
+ CompletionUsage,
31
+ ChatCompletion,
32
+ ToolCall,
33
+ process_stream_chunks
34
+ )
23
35
 
24
36
  # Ensure telemetry is disabled after import as well
25
37
  try:
@@ -28,4 +40,17 @@ try:
28
40
  except ImportError:
29
41
  pass
30
42
 
31
- __all__ = ["LLM", "LLMContextLengthExceededException"]
43
+ __all__ = [
44
+ "LLM",
45
+ "LLMContextLengthExceededException",
46
+ "OpenAIClient",
47
+ "get_openai_client",
48
+ "ChatCompletionMessage",
49
+ "Choice",
50
+ "CompletionTokensDetails",
51
+ "PromptTokensDetails",
52
+ "CompletionUsage",
53
+ "ChatCompletion",
54
+ "ToolCall",
55
+ "process_stream_chunks"
56
+ ]