optexity 0.1.4__tar.gz → 0.1.5__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.
Files changed (85) hide show
  1. {optexity-0.1.4 → optexity-0.1.5}/PKG-INFO +4 -4
  2. {optexity-0.1.4 → optexity-0.1.5}/README.md +2 -2
  3. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_command.py +1 -1
  4. {optexity-0.1.4 → optexity-0.1.5}/optexity.egg-info/PKG-INFO +4 -4
  5. {optexity-0.1.4 → optexity-0.1.5}/pyproject.toml +2 -2
  6. {optexity-0.1.4 → optexity-0.1.5}/LICENSE +0 -0
  7. {optexity-0.1.4 → optexity-0.1.5}/optexity/__init__.py +0 -0
  8. {optexity-0.1.4 → optexity-0.1.5}/optexity/cli.py +0 -0
  9. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/__init__.py +0 -0
  10. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/add_example.py +0 -0
  11. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/download_pdf_url.py +0 -0
  12. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/extract_price_stockanalysis.py +0 -0
  13. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/file_upload.py +0 -0
  14. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/i94.py +0 -0
  15. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/i94_travel_history.py +0 -0
  16. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/peachstate_medicaid.py +0 -0
  17. {optexity-0.1.4 → optexity-0.1.5}/optexity/examples/supabase_login.py +0 -0
  18. {optexity-0.1.4 → optexity-0.1.5}/optexity/exceptions.py +0 -0
  19. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/__init__.py +0 -0
  20. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/__init__.py +0 -0
  21. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/error_handler/__init__.py +0 -0
  22. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/error_handler/error_handler.py +0 -0
  23. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/error_handler/prompt.py +0 -0
  24. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/index_prediction/__init__.py +0 -0
  25. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/index_prediction/action_prediction_locator_axtree.py +0 -0
  26. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/index_prediction/prompt.py +0 -0
  27. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/select_value_prediction/__init__.py +0 -0
  28. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/select_value_prediction/prompt.py +0 -0
  29. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/select_value_prediction/select_value_prediction.py +0 -0
  30. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/two_fa_extraction/__init__.py +0 -0
  31. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/two_fa_extraction/prompt.py +0 -0
  32. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/agents/two_fa_extraction/two_fa_extraction.py +0 -0
  33. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/child_process.py +0 -0
  34. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/__init__.py +0 -0
  35. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/__init__.py +0 -0
  36. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_agentic_task.py +0 -0
  37. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_check.py +0 -0
  38. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_click.py +0 -0
  39. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_input.py +0 -0
  40. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_keypress.py +0 -0
  41. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_select.py +0 -0
  42. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_select_utils.py +0 -0
  43. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/handle_upload.py +0 -0
  44. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/interaction/utils.py +0 -0
  45. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/logging.py +0 -0
  46. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/run_assertion.py +0 -0
  47. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/run_automation.py +0 -0
  48. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/run_extraction.py +0 -0
  49. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/run_interaction.py +0 -0
  50. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/run_python_script.py +0 -0
  51. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/run_two_fa.py +0 -0
  52. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/core/two_factor_auth/__init__.py +0 -0
  53. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/infra/__init__.py +0 -0
  54. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/infra/browser.py +0 -0
  55. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/infra/browser_extension.py +0 -0
  56. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/models/__init__.py +0 -0
  57. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/models/gemini.py +0 -0
  58. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/models/human.py +0 -0
  59. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/models/llm_model.py +0 -0
  60. {optexity-0.1.4 → optexity-0.1.5}/optexity/inference/run_local.py +0 -0
  61. {optexity-0.1.4 → optexity-0.1.5}/optexity/onepassword_integration.py +0 -0
  62. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/__init__.py +0 -0
  63. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/actions/__init__.py +0 -0
  64. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/actions/assertion_action.py +0 -0
  65. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/actions/extraction_action.py +0 -0
  66. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/actions/interaction_action.py +0 -0
  67. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/actions/misc_action.py +0 -0
  68. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/actions/prompts.py +0 -0
  69. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/actions/two_fa_action.py +0 -0
  70. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/automation.py +0 -0
  71. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/callback.py +0 -0
  72. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/inference.py +0 -0
  73. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/memory.py +0 -0
  74. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/task.py +0 -0
  75. {optexity-0.1.4 → optexity-0.1.5}/optexity/schema/token_usage.py +0 -0
  76. {optexity-0.1.4 → optexity-0.1.5}/optexity/test.py +0 -0
  77. {optexity-0.1.4 → optexity-0.1.5}/optexity/utils/__init__.py +0 -0
  78. {optexity-0.1.4 → optexity-0.1.5}/optexity/utils/settings.py +0 -0
  79. {optexity-0.1.4 → optexity-0.1.5}/optexity/utils/utils.py +0 -0
  80. {optexity-0.1.4 → optexity-0.1.5}/optexity.egg-info/SOURCES.txt +0 -0
  81. {optexity-0.1.4 → optexity-0.1.5}/optexity.egg-info/dependency_links.txt +0 -0
  82. {optexity-0.1.4 → optexity-0.1.5}/optexity.egg-info/entry_points.txt +0 -0
  83. {optexity-0.1.4 → optexity-0.1.5}/optexity.egg-info/requires.txt +0 -0
  84. {optexity-0.1.4 → optexity-0.1.5}/optexity.egg-info/top_level.txt +0 -0
  85. {optexity-0.1.4 → optexity-0.1.5}/setup.cfg +0 -0
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: optexity
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Optexity is a platform for building and running browser and computer agents.
5
- Author-email: Optexity <support@optexity.com>
5
+ Author-email: Optexity <founders@optexity.com>
6
6
  Requires-Python: >=3.11
7
7
  Description-Content-Type: text/markdown
8
8
  License-File: LICENSE
@@ -84,13 +84,13 @@ Install Optexity directly from PyPI:
84
84
  ```bash
85
85
  pip install optexity
86
86
  ```
87
+
87
88
  **OR**
88
89
 
89
90
  ### Installation from Source
90
91
 
91
92
  If you want to clone and edit from source:
92
93
 
93
-
94
94
  ```bash
95
95
  git clone git@github.com:Optexity/optexity.git
96
96
  cd optexity
@@ -175,7 +175,7 @@ With the server running on `http://localhost:9000`, you can allocate a task by s
175
175
  curl -X POST http://localhost:9000/inference \
176
176
  -H "Content-Type: application/json" \
177
177
  -d '{
178
- "endpoint_name": "extract_stock_price",
178
+ "endpoint_name": "extract_price_stockanalysis",
179
179
  "input_parameters": {
180
180
  "search_term": ["NVDA"]
181
181
  },
@@ -59,13 +59,13 @@ Install Optexity directly from PyPI:
59
59
  ```bash
60
60
  pip install optexity
61
61
  ```
62
+
62
63
  **OR**
63
64
 
64
65
  ### Installation from Source
65
66
 
66
67
  If you want to clone and edit from source:
67
68
 
68
-
69
69
  ```bash
70
70
  git clone git@github.com:Optexity/optexity.git
71
71
  cd optexity
@@ -150,7 +150,7 @@ With the server running on `http://localhost:9000`, you can allocate a task by s
150
150
  curl -X POST http://localhost:9000/inference \
151
151
  -H "Content-Type: application/json" \
152
152
  -d '{
153
- "endpoint_name": "extract_stock_price",
153
+ "endpoint_name": "extract_price_stockanalysis",
154
154
  "input_parameters": {
155
155
  "search_term": ["NVDA"]
156
156
  },
@@ -236,7 +236,7 @@ async def select_option_locator(
236
236
  ]
237
237
 
238
238
  matched_values = await smart_select(
239
- select_option_values, options, select_option_action.select_values, memory
239
+ select_option_values, select_option_action.select_values, memory
240
240
  )
241
241
 
242
242
  logger.debug(
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: optexity
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Optexity is a platform for building and running browser and computer agents.
5
- Author-email: Optexity <support@optexity.com>
5
+ Author-email: Optexity <founders@optexity.com>
6
6
  Requires-Python: >=3.11
7
7
  Description-Content-Type: text/markdown
8
8
  License-File: LICENSE
@@ -84,13 +84,13 @@ Install Optexity directly from PyPI:
84
84
  ```bash
85
85
  pip install optexity
86
86
  ```
87
+
87
88
  **OR**
88
89
 
89
90
  ### Installation from Source
90
91
 
91
92
  If you want to clone and edit from source:
92
93
 
93
-
94
94
  ```bash
95
95
  git clone git@github.com:Optexity/optexity.git
96
96
  cd optexity
@@ -175,7 +175,7 @@ With the server running on `http://localhost:9000`, you can allocate a task by s
175
175
  curl -X POST http://localhost:9000/inference \
176
176
  -H "Content-Type: application/json" \
177
177
  -d '{
178
- "endpoint_name": "extract_stock_price",
178
+ "endpoint_name": "extract_price_stockanalysis",
179
179
  "input_parameters": {
180
180
  "search_term": ["NVDA"]
181
181
  },
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "optexity"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  readme = "README.md"
9
9
  description = "Optexity is a platform for building and running browser and computer agents."
10
- authors = [{ name = "Optexity", email = "support@optexity.com" }]
10
+ authors = [{ name = "Optexity", email = "founders@optexity.com" }]
11
11
  requires-python = ">=3.11"
12
12
 
13
13
  dependencies = [
File without changes
File without changes
File without changes
File without changes
File without changes