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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: euriai
3
- Version: 0.3.24
3
+ Version: 0.3.25
4
4
  Summary: Python client for EURI LLM API (euron.one) with CLI, LangChain, and LlamaIndex integration
5
5
  Author: euron.one
6
6
  Author-email: sudhanshu@euron.one
@@ -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.base import ChatMessage, CompletionResponse, CompletionResponseGen
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" # Updated to match client.py
12
+ url: str = "https://api.euron.one/api/v1/euri/alpha/chat/completions"
13
13
 
14
14
  def __init__(
15
15
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: euriai
3
- Version: 0.3.24
3
+ Version: 0.3.25
4
4
  Summary: Python client for EURI LLM API (euron.one) with CLI, LangChain, and LlamaIndex integration
5
5
  Author: euron.one
6
6
  Author-email: sudhanshu@euron.one
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="euriai",
5
- version="0.3.24",
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