ragxo 0.1.8__tar.gz → 0.1.9__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.1
2
2
  Name: ragxo
3
- Version: 0.1.8
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,
@@ -48,6 +48,7 @@ ragxo_client.add_embedding_fn(get_embeddings)
48
48
  ragxo_client.add_system_prompt("You are a helpful assistant that can answer questions about the data provided.")
49
49
  ragxo_client.add_model(
50
50
  "gpt-4o-mini",
51
+ limit=10,
51
52
  temperature=0.5,
52
53
  max_tokens=1000,
53
54
  top_p=1.0,
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "ragxo"
3
- version = "0.1.8"
3
+ version = "0.1.9"
4
4
  description = "A RAG (Retrieval-Augmented Generation) toolkit with Milvus integration"
5
5
  authors = ["Mohamed Sadek <mohamedfawzydes@gmail.com>"]
6
6
  readme = "README.md"
@@ -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, limit: int = 10,
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,
File without changes