dify-player 0.3.7__tar.gz → 0.3.8__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 (55) hide show
  1. {dify_player-0.3.7 → dify_player-0.3.8}/PKG-INFO +1 -1
  2. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/llm_groq_chat.py +11 -0
  3. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player.egg-info/PKG-INFO +1 -1
  4. {dify_player-0.3.7 → dify_player-0.3.8}/pyproject.toml +1 -1
  5. {dify_player-0.3.7 → dify_player-0.3.8}/MANIFEST.in +0 -0
  6. {dify_player-0.3.7 → dify_player-0.3.8}/README.md +0 -0
  7. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/__init__.py +0 -0
  8. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/__main__.py +0 -0
  9. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/cli.py +0 -0
  10. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/__init__.py +0 -0
  11. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/graph_parser.py +0 -0
  12. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/http_body_converter.py +0 -0
  13. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/__init__.py +0 -0
  14. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/assigner.py +0 -0
  15. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/code.py +0 -0
  16. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/end.py +0 -0
  17. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/http_request.py +0 -0
  18. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/if_else.py +0 -0
  19. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/llm.py +0 -0
  20. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/loop.py +0 -0
  21. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/start.py +0 -0
  22. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/template_transform.py +0 -0
  23. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/node_converters/variable_aggregator.py +0 -0
  24. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/plan_serializer.py +0 -0
  25. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/reference_converter.py +0 -0
  26. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/workflow_loader.py +0 -0
  27. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_importer/workflow_normalizer.py +0 -0
  28. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/dify_workflow_importer.py +0 -0
  29. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/event_logger.py +0 -0
  30. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/exceptions.py +0 -0
  31. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/input_resolver.py +0 -0
  32. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/llm_cache.py +0 -0
  33. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/models.py +0 -0
  34. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/__init__.py +0 -0
  35. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/assigner.py +0 -0
  36. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/code.py +0 -0
  37. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/end.py +0 -0
  38. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/http.py +0 -0
  39. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/if_else.py +0 -0
  40. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/llm_azure_chat.py +0 -0
  41. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/llm_xai_chat.py +0 -0
  42. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/start.py +0 -0
  43. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/template.py +0 -0
  44. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/nodes/variable_aggregator.py +0 -0
  45. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/plan_loader.py +0 -0
  46. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/provider_config.py +0 -0
  47. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/runtime.py +0 -0
  48. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/value_renderer.py +0 -0
  49. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/workflow_engine.py +0 -0
  50. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player/workflow_executor.py +0 -0
  51. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player.egg-info/SOURCES.txt +0 -0
  52. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player.egg-info/dependency_links.txt +0 -0
  53. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player.egg-info/requires.txt +0 -0
  54. {dify_player-0.3.7 → dify_player-0.3.8}/dify_player.egg-info/top_level.txt +0 -0
  55. {dify_player-0.3.7 → dify_player-0.3.8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dify-player
3
- Version: 0.3.7
3
+ Version: 0.3.8
4
4
  Summary: Minimal workflow runner for hand-authored Dify-like plans.
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: Jinja2<4,>=3.1
@@ -1,3 +1,14 @@
1
+ """LLM node for Groq and other OpenAI-compatible Chat Completions endpoints.
2
+
3
+ Although named ``llm_groq_chat`` for historical reasons, this node speaks the
4
+ plain OpenAI ``/chat/completions`` protocol, so it can target any
5
+ OpenAI-compatible server (Groq, on-prem vLLM / TGI, etc.) simply by overriding
6
+ ``groq_api_base_url`` / ``DIFY_PLAYER_GROQ_API_BASE_URL``. Structured output is
7
+ requested with the OpenAI-standard ``response_format: {"type": "json_schema",
8
+ ...}`` shape, which recent vLLM builds accept, so OSS / on-prem deployments
9
+ reuse this node unchanged.
10
+ """
11
+
1
12
  from __future__ import annotations
2
13
 
3
14
  import json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dify-player
3
- Version: 0.3.7
3
+ Version: 0.3.8
4
4
  Summary: Minimal workflow runner for hand-authored Dify-like plans.
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: Jinja2<4,>=3.1
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
7
 
8
8
  [project]
9
9
  name = "dify-player"
10
- version = "0.3.7"
10
+ version = "0.3.8"
11
11
  description = "Minimal workflow runner for hand-authored Dify-like plans."
12
12
  requires-python = ">=3.11"
13
13
  dependencies = [
File without changes
File without changes
File without changes