euriai 0.3.24__tar.gz → 0.3.25__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-0.3.24 → euriai-0.3.25}/PKG-INFO +1 -1
- {euriai-0.3.24 → euriai-0.3.25}/euriai/euri_chat.py +2 -2
- {euriai-0.3.24 → euriai-0.3.25}/euriai.egg-info/PKG-INFO +1 -1
- {euriai-0.3.24 → euriai-0.3.25}/setup.py +1 -1
- {euriai-0.3.24 → euriai-0.3.25}/README.md +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai/__init__.py +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai/cli.py +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai/client.py +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai/embedding.py +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai/euri_embed.py +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai/langchain_embed.py +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai/langchain_llm.py +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai.egg-info/SOURCES.txt +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai.egg-info/dependency_links.txt +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai.egg-info/entry_points.txt +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai.egg-info/requires.txt +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/euriai.egg-info/top_level.txt +0 -0
- {euriai-0.3.24 → euriai-0.3.25}/setup.cfg +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
import requests
|
2
2
|
from typing import List, Optional
|
3
3
|
from llama_index.core.llms import LLM
|
4
|
-
from llama_index.core.llms.
|
4
|
+
from llama_index.core.base.llms.types import ChatMessage, CompletionResponse, CompletionResponseGen
|
5
5
|
|
6
6
|
|
7
7
|
class EuriaiLlamaIndexLLM(LLM):
|
@@ -9,7 +9,7 @@ class EuriaiLlamaIndexLLM(LLM):
|
|
9
9
|
model: str = "gpt-4.1-nano"
|
10
10
|
temperature: float = 0.7
|
11
11
|
max_tokens: int = 1000
|
12
|
-
url: str = "https://api.euron.one/api/v1/euri/alpha/chat/completions"
|
12
|
+
url: str = "https://api.euron.one/api/v1/euri/alpha/chat/completions"
|
13
13
|
|
14
14
|
def __init__(
|
15
15
|
self,
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="euriai",
|
5
|
-
version="0.3.
|
5
|
+
version="0.3.25",
|
6
6
|
description="Python client for EURI LLM 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
|