llm-dialog-manager 0.2.1__py3-none-any.whl → 0.2.4__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.
@@ -1,4 +1,4 @@
1
1
  from .chat_history import ChatHistory
2
2
  from .agent import Agent
3
3
 
4
- __version__ = "0.2.1"
4
+ __version__ = "0.2.4"
@@ -275,7 +275,14 @@ if __name__ == "__main__":
275
275
  # write a test for detect finding agent
276
276
  text = "I think the answer is 42"
277
277
 
278
- agent = Agent("claude-3-5-sonnet-20241022", "you are an assistant", memory_enabled=True)
278
+ # from agent.messageloader import information_detector_messages
279
+
280
+ # # Now you can print or use information_detector_messages as needed
281
+ # information_detector_agent = Agent("gemini-1.5-pro", information_detector_messages)
282
+ # information_detector_agent.add_message("user", text)
283
+ # response = information_detector_agent.generate_response()
284
+ # print(response)
285
+ agent = Agent("gemini-1.5-pro-002", "you are an assistant", memory_enabled=True)
279
286
 
280
287
  # Format the prompt to check if the section is the last one in the outline
281
288
  prompt = f"Say: {text}\n"
@@ -284,7 +291,7 @@ if __name__ == "__main__":
284
291
  agent.add_message("user", prompt)
285
292
  agent.add_message("assistant", "the answer")
286
293
 
287
- print(agent.generate_response(max_tokens=20, temperature=0.0))
294
+ print(agent.generate_response())
288
295
  print(agent.history[:])
289
296
  last_message = agent.history.pop()
290
297
  print(last_message)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llm_dialog_manager
3
- Version: 0.2.1
3
+ Version: 0.2.4
4
4
  Summary: A Python package for managing LLM chat conversation history
5
5
  Author-email: xihajun <work@2333.fun>
6
6
  License: MIT
@@ -25,25 +25,25 @@ Requires-Dist: google-generativeai>=0.1.0
25
25
  Requires-Dist: python-dotenv>=1.0.0
26
26
  Requires-Dist: typing-extensions>=4.0.0
27
27
  Requires-Dist: uuid>=1.30
28
- Provides-Extra: all
29
- Requires-Dist: pytest>=8.0.0; extra == "all"
30
- Requires-Dist: pytest-asyncio>=0.21.1; extra == "all"
31
- Requires-Dist: pytest-cov>=4.1.0; extra == "all"
32
- Requires-Dist: black>=23.9.1; extra == "all"
33
- Requires-Dist: isort>=5.12.0; extra == "all"
34
28
  Provides-Extra: dev
35
29
  Requires-Dist: pytest>=8.0.0; extra == "dev"
36
30
  Requires-Dist: pytest-asyncio>=0.21.1; extra == "dev"
37
31
  Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
38
32
  Requires-Dist: black>=23.9.1; extra == "dev"
39
33
  Requires-Dist: isort>=5.12.0; extra == "dev"
40
- Provides-Extra: lint
41
- Requires-Dist: black>=22.0; extra == "lint"
42
- Requires-Dist: isort>=5.0; extra == "lint"
43
34
  Provides-Extra: test
44
35
  Requires-Dist: pytest>=6.0; extra == "test"
45
36
  Requires-Dist: pytest-asyncio>=0.14.0; extra == "test"
46
37
  Requires-Dist: pytest-cov>=2.0; extra == "test"
38
+ Provides-Extra: lint
39
+ Requires-Dist: black>=22.0; extra == "lint"
40
+ Requires-Dist: isort>=5.0; extra == "lint"
41
+ Provides-Extra: all
42
+ Requires-Dist: pytest>=8.0.0; extra == "all"
43
+ Requires-Dist: pytest-asyncio>=0.21.1; extra == "all"
44
+ Requires-Dist: pytest-cov>=4.1.0; extra == "all"
45
+ Requires-Dist: black>=23.9.1; extra == "all"
46
+ Requires-Dist: isort>=5.12.0; extra == "all"
47
47
 
48
48
  # LLM Dialog Manager
49
49
 
@@ -0,0 +1,9 @@
1
+ llm_dialog_manager/__init__.py,sha256=Ki4WpdLEEIJ_fi9daYLWSsbxWmp_gmIllCRZH8xgTBw,86
2
+ llm_dialog_manager/agent.py,sha256=aST_n9jU1tuHjMUK0ytCmWq3wYkZp9VHLcg4Q4Y7Tcw,11731
3
+ llm_dialog_manager/chat_history.py,sha256=xKA-oQCv8jv_g8EhXrG9h1S8Icbj2FfqPIhbty5vra4,6033
4
+ llm_dialog_manager/key_manager.py,sha256=shvxmn4zUtQx_p-x1EFyOmnk-WlhigbpKtxTKve-zXk,4421
5
+ llm_dialog_manager-0.2.4.dist-info/LICENSE,sha256=vWGbYgGuWpWrXL8-xi6pNcX5UzD6pWoIAZmcetyfbus,1064
6
+ llm_dialog_manager-0.2.4.dist-info/METADATA,sha256=n6l6z8jf4kqgEhqkRIZPhF9CuM9Q6OU0aj_5fQIEY84,5193
7
+ llm_dialog_manager-0.2.4.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
8
+ llm_dialog_manager-0.2.4.dist-info/top_level.txt,sha256=u2EQEXW0NGAt0AAHT7jx1odXZ4rZfjcgbmJhvKFuMkI,19
9
+ llm_dialog_manager-0.2.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.4.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,9 +0,0 @@
1
- llm_dialog_manager/__init__.py,sha256=joo2odAcSJIo-p3bwQbGxYok_vWUlI2RjkaAmAdKX3o,86
2
- llm_dialog_manager/agent.py,sha256=cLwDTgCpO8teYaedIiee8XWU8vE9icBe_NNoAklm79w,11388
3
- llm_dialog_manager/chat_history.py,sha256=xKA-oQCv8jv_g8EhXrG9h1S8Icbj2FfqPIhbty5vra4,6033
4
- llm_dialog_manager/key_manager.py,sha256=shvxmn4zUtQx_p-x1EFyOmnk-WlhigbpKtxTKve-zXk,4421
5
- llm_dialog_manager-0.2.1.dist-info/LICENSE,sha256=vWGbYgGuWpWrXL8-xi6pNcX5UzD6pWoIAZmcetyfbus,1064
6
- llm_dialog_manager-0.2.1.dist-info/METADATA,sha256=F-7unvFE1V-Lk6G_nBvHHXxza3RHjXtB-LJlk_iP2rM,5193
7
- llm_dialog_manager-0.2.1.dist-info/WHEEL,sha256=a7TGlA-5DaHMRrarXjVbQagU3Man_dCnGIWMJr5kRWo,91
8
- llm_dialog_manager-0.2.1.dist-info/top_level.txt,sha256=u2EQEXW0NGAt0AAHT7jx1odXZ4rZfjcgbmJhvKFuMkI,19
9
- llm_dialog_manager-0.2.1.dist-info/RECORD,,