llm-dialog-manager 0.1.2480__tar.gz → 0.2.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/PKG-INFO +1 -1
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager/__init__.py +1 -1
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager/agent.py +49 -30
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager.egg-info/PKG-INFO +1 -1
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/pyproject.toml +1 -1
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/LICENSE +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/README.md +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager/chat_history.py +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager/key_manager.py +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager.egg-info/SOURCES.txt +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager.egg-info/dependency_links.txt +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager.egg-info/requires.txt +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager.egg-info/top_level.txt +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/setup.cfg +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/tests/test_agent.py +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/tests/test_chat_history.py +0 -0
- {llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/tests/test_key_manager.py +0 -0
@@ -113,27 +113,53 @@ def completion(model: str, messages: List[Dict[str, str]], max_tokens: int = 100
|
|
113
113
|
return response.content[0].text
|
114
114
|
|
115
115
|
elif "gemini" in model:
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
116
|
+
try:
|
117
|
+
# First try OpenAI-style API
|
118
|
+
client = openai.OpenAI(
|
119
|
+
api_key=api_key,
|
120
|
+
base_url="https://generativelanguage.googleapis.com/v1beta/"
|
121
|
+
)
|
122
|
+
# Remove any system message from the beginning if present
|
123
|
+
if messages and messages[0]["role"] == "system":
|
124
|
+
system_msg = messages.pop(0)
|
125
|
+
# Prepend system message to first user message if exists
|
126
|
+
if messages:
|
127
|
+
messages[0]["content"] = f"{system_msg['content']}\n\n{messages[0]['content']}"
|
128
|
+
|
129
|
+
response = client.chat.completions.create(
|
130
|
+
model=model,
|
131
|
+
messages=messages,
|
132
|
+
temperature=temperature
|
133
|
+
)
|
134
|
+
|
135
|
+
return response.choices[0].message.content
|
136
|
+
|
137
|
+
except Exception as e:
|
138
|
+
# If OpenAI-style API fails, fall back to Google's genai library
|
139
|
+
logger.info("Falling back to Google's genai library")
|
140
|
+
genai.configure(api_key=api_key)
|
141
|
+
|
142
|
+
# Convert messages to Gemini format
|
143
|
+
gemini_messages = []
|
144
|
+
for msg in messages:
|
145
|
+
if msg["role"] == "system":
|
146
|
+
# Prepend system message to first user message if exists
|
147
|
+
if gemini_messages:
|
148
|
+
gemini_messages[0].parts[0].text = f"{msg['content']}\n\n{gemini_messages[0].parts[0].text}"
|
149
|
+
else:
|
150
|
+
gemini_messages.append({"role": msg["role"], "parts": [{"text": msg["content"]}]})
|
151
|
+
|
152
|
+
# Create Gemini model and generate response
|
153
|
+
model = genai.GenerativeModel(model_name=model)
|
154
|
+
response = model.generate_content(
|
155
|
+
gemini_messages,
|
156
|
+
generation_config=genai.types.GenerationConfig(
|
157
|
+
temperature=temperature,
|
158
|
+
max_output_tokens=max_tokens
|
159
|
+
)
|
160
|
+
)
|
161
|
+
|
162
|
+
return response.text
|
137
163
|
|
138
164
|
elif "grok" in model:
|
139
165
|
# Randomly choose between OpenAI and Anthropic SDK
|
@@ -249,13 +275,6 @@ if __name__ == "__main__":
|
|
249
275
|
# write a test for detect finding agent
|
250
276
|
text = "I think the answer is 42"
|
251
277
|
|
252
|
-
# from agent.messageloader import information_detector_messages
|
253
|
-
|
254
|
-
# # Now you can print or use information_detector_messages as needed
|
255
|
-
# information_detector_agent = Agent("gemini-1.5-pro", information_detector_messages)
|
256
|
-
# information_detector_agent.add_message("user", text)
|
257
|
-
# response = information_detector_agent.generate_response()
|
258
|
-
# print(response)
|
259
278
|
agent = Agent("claude-3-5-sonnet-20241022", "you are an assistant", memory_enabled=True)
|
260
279
|
|
261
280
|
# Format the prompt to check if the section is the last one in the outline
|
@@ -267,6 +286,6 @@ if __name__ == "__main__":
|
|
267
286
|
|
268
287
|
print(agent.generate_response(max_tokens=20, temperature=0.0))
|
269
288
|
print(agent.history[:])
|
270
|
-
|
271
|
-
print(
|
289
|
+
last_message = agent.history.pop()
|
290
|
+
print(last_message)
|
272
291
|
print(agent.history[:])
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "llm_dialog_manager"
|
7
|
-
version = "0.1
|
7
|
+
version = "0.2.1"
|
8
8
|
description = "A Python package for managing LLM chat conversation history"
|
9
9
|
readme = "README.md"
|
10
10
|
authors = [{ name = "xihajun", email = "work@2333.fun" }]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager.egg-info/requires.txt
RENAMED
File without changes
|
{llm_dialog_manager-0.1.2480 → llm_dialog_manager-0.2.1}/llm_dialog_manager.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|