euriai 1.0.14__tar.gz → 1.0.15__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.
- {euriai-1.0.14 → euriai-1.0.15}/PKG-INFO +1 -1
- {euriai-1.0.14 → euriai-1.0.15}/euriai/__init__.py +1 -1
- {euriai-1.0.14 → euriai-1.0.15}/euriai/langgraph.py +5 -5
- {euriai-1.0.14 → euriai-1.0.15}/euriai.egg-info/PKG-INFO +1 -1
- {euriai-1.0.14 → euriai-1.0.15}/setup.py +1 -1
- {euriai-1.0.14 → euriai-1.0.15}/README.md +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/autogen.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/cli.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/client.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/crewai.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/direct.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/embedding.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/euri_chat.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/euri_embed.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/langchain.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/llamaindex.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/n8n.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai/smolagents.py +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai.egg-info/SOURCES.txt +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai.egg-info/dependency_links.txt +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai.egg-info/entry_points.txt +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai.egg-info/requires.txt +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/euriai.egg-info/top_level.txt +0 -0
- {euriai-1.0.14 → euriai-1.0.15}/setup.cfg +0 -0
@@ -156,15 +156,15 @@ class EuriaiAINode:
|
|
156
156
|
# Format prompt with state variables
|
157
157
|
formatted_prompt = self.prompt_template.format(**state)
|
158
158
|
|
159
|
-
# Prepare
|
160
|
-
|
159
|
+
# Prepare user prompt (combine system message if provided)
|
160
|
+
user_prompt = formatted_prompt
|
161
161
|
if self.system_message:
|
162
|
-
|
163
|
-
|
162
|
+
# If there's a system message, combine it with the user prompt
|
163
|
+
user_prompt = f"System: {self.system_message}\n\nUser: {formatted_prompt}"
|
164
164
|
|
165
165
|
# Make API call
|
166
166
|
response = self.client.generate_completion(
|
167
|
-
|
167
|
+
prompt=user_prompt,
|
168
168
|
temperature=self.temperature,
|
169
169
|
max_tokens=self.max_tokens
|
170
170
|
)
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="euriai",
|
5
|
-
version="1.0.
|
5
|
+
version="1.0.15",
|
6
6
|
description="Python client for Euri API (euron.one) with CLI, LangChain, and LlamaIndex integration",
|
7
7
|
long_description=open("README.md", encoding="utf-8").read(),
|
8
8
|
long_description_content_type="text/markdown",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|