LLMFunctionObjects 0.1.6__tar.gz → 0.1.7__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 (21) hide show
  1. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/LLMFunctions.py +1 -1
  2. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects.egg-info/PKG-INFO +1 -1
  3. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/PKG-INFO +1 -1
  4. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/setup.py +1 -1
  5. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LICENSE +0 -0
  6. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/Chat.py +0 -0
  7. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/Configuration.py +0 -0
  8. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/Evaluator.py +0 -0
  9. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/EvaluatorChat.py +0 -0
  10. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/EvaluatorChatGPT.py +0 -0
  11. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/EvaluatorChatPaLM.py +0 -0
  12. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/Functor.py +0 -0
  13. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/SubParser.py +0 -0
  14. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects/__init__.py +0 -0
  15. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects.egg-info/SOURCES.txt +0 -0
  16. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects.egg-info/dependency_links.txt +0 -0
  17. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects.egg-info/requires.txt +0 -0
  18. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/LLMFunctionObjects.egg-info/top_level.txt +0 -0
  19. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/README.md +0 -0
  20. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/pyproject.toml +0 -0
  21. {LLMFunctionObjects-0.1.6 → llmfunctionobjects-0.1.7}/setup.cfg +0 -0
@@ -57,7 +57,7 @@ def llm_configuration(spec, **kwargs):
57
57
  confChatGPT = llm_configuration("openai",
58
58
  name="chatgpt",
59
59
  module='openai',
60
- model='gpt-3.5-turbo-0613',
60
+ model='gpt-3.5-turbo',
61
61
  function=client.chat.completions.create, # was openai.ChatCompletion.create,
62
62
  known_params=["model", "messages", "functions", "function_call",
63
63
  "temperature", "top_p", "n",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: LLMFunctionObjects
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: Large Language Models (LLMs) functions package.
5
5
  Home-page: https://github.com/antononcube/Python-packages/tree/main/LLMFunctionObjects
6
6
  Author: Anton Antonov
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: LLMFunctionObjects
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: Large Language Models (LLMs) functions package.
5
5
  Home-page: https://github.com/antononcube/Python-packages/tree/main/LLMFunctionObjects
6
6
  Author: Anton Antonov
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="LLMFunctionObjects",
8
- version="0.1.6",
8
+ version="0.1.7",
9
9
  author="Anton Antonov",
10
10
  author_email="antononcube@posteo.net",
11
11
  description="Large Language Models (LLMs) functions package.",