ragxo 0.1.8__py3-none-any.whl → 0.1.9__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.
ragxo/client.py
CHANGED
@@ -109,7 +109,8 @@ class Ragxo:
|
|
109
109
|
self.system_prompt = prompt
|
110
110
|
return self
|
111
111
|
|
112
|
-
def add_model(self, model: str,
|
112
|
+
def add_model(self, model: str,
|
113
|
+
limit: int = 10,
|
113
114
|
temperature: float = 0.5,
|
114
115
|
max_tokens: int = 1000,
|
115
116
|
top_p: float = 1.0,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ragxo
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.9
|
4
4
|
Summary: A RAG (Retrieval-Augmented Generation) toolkit with Milvus integration
|
5
5
|
Home-page: https://github.com/yourusername/ragx
|
6
6
|
License: MIT
|
@@ -78,6 +78,7 @@ ragxo_client.add_embedding_fn(get_embeddings)
|
|
78
78
|
ragxo_client.add_system_prompt("You are a helpful assistant that can answer questions about the data provided.")
|
79
79
|
ragxo_client.add_model(
|
80
80
|
"gpt-4o-mini",
|
81
|
+
limit=10,
|
81
82
|
temperature=0.5,
|
82
83
|
max_tokens=1000,
|
83
84
|
top_p=1.0,
|
@@ -0,0 +1,5 @@
|
|
1
|
+
ragxo/__init__.py,sha256=0VVe-z4XkkGQLQIG0hF0Hyf87_RgX0E4T9TRwwTkbmE,68
|
2
|
+
ragxo/client.py,sha256=rmV01TZ3F8McLavVOokjLSUv78fdCA80oDRVWSw-38M,12791
|
3
|
+
ragxo-0.1.9.dist-info/METADATA,sha256=br3CDegqsUhhaw-GFC7U0-J7H6fN3qHbvQpFZf8rlfU,6241
|
4
|
+
ragxo-0.1.9.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
5
|
+
ragxo-0.1.9.dist-info/RECORD,,
|
ragxo-0.1.8.dist-info/RECORD
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
ragxo/__init__.py,sha256=0VVe-z4XkkGQLQIG0hF0Hyf87_RgX0E4T9TRwwTkbmE,68
|
2
|
-
ragxo/client.py,sha256=5AvARwpm4ux-7nWRLs4k5lDFhkgbjl6B9yNjdxcK8vo,12766
|
3
|
-
ragxo-0.1.8.dist-info/METADATA,sha256=4uo_8ewStWVyYQYtpfktLz9i8jVfQPReeZxAxfhrWQ4,6227
|
4
|
-
ragxo-0.1.8.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
5
|
-
ragxo-0.1.8.dist-info/RECORD,,
|
File without changes
|