user-simulator 0.1.5__tar.gz → 0.1.7__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.
- {user_simulator-0.1.5 → user_simulator-0.1.7}/PKG-INFO +2 -2
- {user_simulator-0.1.5 → user_simulator-0.1.7}/pyproject.toml +3 -3
- user_simulator-0.1.7/src/data/list_functions/number_list.py +24 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_simulator.egg-info/PKG-INFO +2 -2
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_simulator.egg-info/SOURCES.txt +1 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_simulator.egg-info/top_level.txt +2 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/LICENSE.txt +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/README.md +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/setup.cfg +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/metamorphic/__init__.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/metamorphic/results.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/metamorphic/rule_utils.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/metamorphic/rules.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/metamorphic/tests.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/metamorphic/text_comparison_utils.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/technologies/__init__.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/technologies/chatbot_connectors.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/technologies/chatbots.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/technologies/taskyto.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/__init__.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/cli/__init__.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/cli/gen_user_profile.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/cli/init_project.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/cli/sensei_chat.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/cli/sensei_check.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/cli/validation_check.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/core/__init__.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/core/ask_about.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/core/data_extraction.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/core/data_gathering.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/core/interaction_styles.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/core/role_structure.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/core/user_simulator.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/handlers/__init__.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/handlers/asr_module.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/handlers/html_parser_module.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/handlers/image_recognition_module.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/handlers/pdf_parser_module.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/__init__.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/config.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/cost_tracker.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/cost_tracker_v2.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/errors.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/exceptions.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/languages.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/register_management.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/show_logs.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/token_cost_calculator.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/url_management.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/utils/utilities.py +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_simulator.egg-info/dependency_links.txt +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_simulator.egg-info/entry_points.txt +0 -0
- {user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_simulator.egg-info/requires.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: user-simulator
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.7
|
4
4
|
Summary: LLM-based user simulator for chatbot testing.
|
5
5
|
Author: Alejandro Del Pozzo Escalera, Juan de Lara Jaramillo, Esther Guerra Sánchez
|
6
6
|
License: MIT License
|
@@ -25,7 +25,7 @@ License: MIT License
|
|
25
25
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
26
26
|
SOFTWARE.
|
27
27
|
Project-URL: Homepage, https://github.com/satori-chatbots/user-simulator
|
28
|
-
Requires-Python:
|
28
|
+
Requires-Python: >=3.12
|
29
29
|
Description-Content-Type: text/markdown
|
30
30
|
License-File: LICENSE.txt
|
31
31
|
Requires-Dist: allpairspy>=2.5.1
|
@@ -1,9 +1,9 @@
|
|
1
1
|
[project]
|
2
2
|
name = "user-simulator"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.7"
|
4
4
|
description = "LLM-based user simulator for chatbot testing."
|
5
5
|
readme = "README.md"
|
6
|
-
requires-python = ">=3.
|
6
|
+
requires-python = ">=3.12"
|
7
7
|
license = {file = "LICENSE.txt"}
|
8
8
|
|
9
9
|
authors = [
|
@@ -49,5 +49,5 @@ package-dir = {"" = "src"}
|
|
49
49
|
|
50
50
|
[tool.setuptools.packages.find]
|
51
51
|
where = ["src"]
|
52
|
-
include = ["user_sim*", "metamorphic*", "technologies*"]
|
52
|
+
#include = ["user_sim*", "metamorphic*", "technologies*"]
|
53
53
|
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import numpy as np
|
2
|
+
import yaml
|
3
|
+
import random
|
4
|
+
|
5
|
+
# these are only examples of functions to create lists.
|
6
|
+
|
7
|
+
def number_list(min, max, step):
|
8
|
+
numberlist = np.arange(min, max, step)
|
9
|
+
return numberlist.tolist()
|
10
|
+
|
11
|
+
|
12
|
+
def random_list():
|
13
|
+
randomlist = np.random.randint(0, 10, 3)
|
14
|
+
return randomlist.tolist()
|
15
|
+
|
16
|
+
|
17
|
+
def shuffle_list(file):
|
18
|
+
with open(file, 'r', encoding="UTF-8") as f:
|
19
|
+
yaml_file = yaml.safe_load(f)
|
20
|
+
dic = list(yaml_file.keys())
|
21
|
+
yaml_list = yaml_file[dic[0]]
|
22
|
+
copy_list = yaml_list.copy()
|
23
|
+
random.shuffle(copy_list)
|
24
|
+
return copy_list
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: user-simulator
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.7
|
4
4
|
Summary: LLM-based user simulator for chatbot testing.
|
5
5
|
Author: Alejandro Del Pozzo Escalera, Juan de Lara Jaramillo, Esther Guerra Sánchez
|
6
6
|
License: MIT License
|
@@ -25,7 +25,7 @@ License: MIT License
|
|
25
25
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
26
26
|
SOFTWARE.
|
27
27
|
Project-URL: Homepage, https://github.com/satori-chatbots/user-simulator
|
28
|
-
Requires-Python:
|
28
|
+
Requires-Python: >=3.12
|
29
29
|
Description-Content-Type: text/markdown
|
30
30
|
License-File: LICENSE.txt
|
31
31
|
Requires-Dist: allpairspy>=2.5.1
|
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
|
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
|
{user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_sim/handlers/image_recognition_module.py
RENAMED
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
|
{user_simulator-0.1.5 → user_simulator-0.1.7}/src/user_simulator.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|