ursa-ai 0.2.1__tar.gz → 0.2.2__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.
Potentially problematic release.
This version of ursa-ai might be problematic. Click here for more details.
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/PKG-INFO +16 -4
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/README.md +13 -2
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/pyproject.toml +2 -1
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa_ai.egg-info/PKG-INFO +16 -4
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/LICENSE +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/setup.cfg +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/__init__.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/arxiv_agent.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/base.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/code_review_agent.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/execution_agent.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/hypothesizer_agent.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/mp_agent.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/planning_agent.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/recall_agent.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/agents/websearch_agent.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/prompt_library/code_review_prompts.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/prompt_library/execution_prompts.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/prompt_library/hypothesizer_prompts.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/prompt_library/literature_prompts.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/prompt_library/planning_prompts.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/prompt_library/websearch_prompts.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/tools/run_command.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/tools/write_code.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/util/diff_renderer.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/util/memory_logger.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa/util/parse.py +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa_ai.egg-info/SOURCES.txt +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa_ai.egg-info/dependency_links.txt +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa_ai.egg-info/requires.txt +0 -0
- {ursa_ai-0.2.1 → ursa_ai-0.2.2}/src/ursa_ai.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ursa-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Agents for science at LANL
|
|
5
5
|
Author-email: Mike Grosskopf <mikegros@lanl.gov>, Rahul Somasundaram <rsomasundaram@lanl.gov>, Arthur Lui <alui@lanl.gov>
|
|
6
6
|
Project-URL: Homepage, https://github.com/lanl/ursa
|
|
7
|
+
Project-URL: Documentation, https://github.com/lanl/ursa/tree/main/docs
|
|
7
8
|
Project-URL: Repository, https://github.com/lanl/ursa
|
|
8
9
|
Project-URL: Issues, https://github.com/lanl/ursa/issues
|
|
9
10
|
Classifier: Operating System :: OS Independent
|
|
10
|
-
Classifier: License :: OSI Approved ::
|
|
11
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
11
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -43,6 +44,9 @@ Dynamic: license-file
|
|
|
43
44
|
|
|
44
45
|
<img src="./logos/logo.png" alt="URSA Logo" width="200" height="200">
|
|
45
46
|
|
|
47
|
+
[![PyPI Version][pypi-version]](https://pypi.org/project/ursa-ai/)
|
|
48
|
+
[![PyPI Downloads][total-downloads]](https://pepy.tech/projects/ursa-ai)
|
|
49
|
+
|
|
46
50
|
The flexible agentic workflow for accelerating scientific tasks.
|
|
47
51
|
Composes information flow between agents for planning, code writing and execution, and online research to solve complex problems.
|
|
48
52
|
|
|
@@ -72,8 +76,8 @@ Documentation for each URSA agent:
|
|
|
72
76
|
- [Hypothesizer Agent](docs/hypothesizer_agent.md)
|
|
73
77
|
|
|
74
78
|
Documentation for combining agents:
|
|
75
|
-
- [ArXiv -> Execution for Materials](docs/combining_arxiv_and_execution.md
|
|
76
|
-
- [ArXiv -> Execution for Neutron Star Properties](docs/combining_arxiv_and_execution_neutronStar.md
|
|
79
|
+
- [ArXiv -> Execution for Materials](docs/combining_arxiv_and_execution.md)
|
|
80
|
+
- [ArXiv -> Execution for Neutron Star Properties](docs/combining_arxiv_and_execution_neutronStar.md)
|
|
77
81
|
|
|
78
82
|
# Sandboxing
|
|
79
83
|
The Execution Agent is allowed to run system commands and write/run code. Being able to execute arbitrary system commands or write
|
|
@@ -99,7 +103,12 @@ You have a duty for ensuring that you use URSA responsibly.
|
|
|
99
103
|
Follow installation instructions
|
|
100
104
|
[here](https://docs.astral.sh/uv/getting-started/installation/)
|
|
101
105
|
|
|
106
|
+
* [`ruff`](https://docs.astral.sh/ruff/)
|
|
107
|
+
* An extremely fast Python linter and code formatter, written in Rust.
|
|
108
|
+
* After installing `uv`, you can install just ruff `uv tool install ruff`
|
|
109
|
+
|
|
102
110
|
* [`just`](https://github.com/casey/just)
|
|
111
|
+
* A modern way to save and run project-specific commands
|
|
103
112
|
* After installing `uv`, you can install just with `uv tool install rust-just`
|
|
104
113
|
|
|
105
114
|
## Development Team
|
|
@@ -116,3 +125,6 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
|
116
125
|
- *Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.*
|
|
117
126
|
|
|
118
127
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
128
|
+
|
|
129
|
+
[pypi-version]: https://img.shields.io/pypi/v/ursa-ai?style=flat-square&label=PyPI
|
|
130
|
+
[total-downloads]: https://img.shields.io/pepy/dt/ursa-ai?style=flat-square&label=downloads&color=blue
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
<img src="./logos/logo.png" alt="URSA Logo" width="200" height="200">
|
|
4
4
|
|
|
5
|
+
[![PyPI Version][pypi-version]](https://pypi.org/project/ursa-ai/)
|
|
6
|
+
[![PyPI Downloads][total-downloads]](https://pepy.tech/projects/ursa-ai)
|
|
7
|
+
|
|
5
8
|
The flexible agentic workflow for accelerating scientific tasks.
|
|
6
9
|
Composes information flow between agents for planning, code writing and execution, and online research to solve complex problems.
|
|
7
10
|
|
|
@@ -31,8 +34,8 @@ Documentation for each URSA agent:
|
|
|
31
34
|
- [Hypothesizer Agent](docs/hypothesizer_agent.md)
|
|
32
35
|
|
|
33
36
|
Documentation for combining agents:
|
|
34
|
-
- [ArXiv -> Execution for Materials](docs/combining_arxiv_and_execution.md
|
|
35
|
-
- [ArXiv -> Execution for Neutron Star Properties](docs/combining_arxiv_and_execution_neutronStar.md
|
|
37
|
+
- [ArXiv -> Execution for Materials](docs/combining_arxiv_and_execution.md)
|
|
38
|
+
- [ArXiv -> Execution for Neutron Star Properties](docs/combining_arxiv_and_execution_neutronStar.md)
|
|
36
39
|
|
|
37
40
|
# Sandboxing
|
|
38
41
|
The Execution Agent is allowed to run system commands and write/run code. Being able to execute arbitrary system commands or write
|
|
@@ -58,7 +61,12 @@ You have a duty for ensuring that you use URSA responsibly.
|
|
|
58
61
|
Follow installation instructions
|
|
59
62
|
[here](https://docs.astral.sh/uv/getting-started/installation/)
|
|
60
63
|
|
|
64
|
+
* [`ruff`](https://docs.astral.sh/ruff/)
|
|
65
|
+
* An extremely fast Python linter and code formatter, written in Rust.
|
|
66
|
+
* After installing `uv`, you can install just ruff `uv tool install ruff`
|
|
67
|
+
|
|
61
68
|
* [`just`](https://github.com/casey/just)
|
|
69
|
+
* A modern way to save and run project-specific commands
|
|
62
70
|
* After installing `uv`, you can install just with `uv tool install rust-just`
|
|
63
71
|
|
|
64
72
|
## Development Team
|
|
@@ -75,3 +83,6 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
|
75
83
|
- *Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.*
|
|
76
84
|
|
|
77
85
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
86
|
+
|
|
87
|
+
[pypi-version]: https://img.shields.io/pypi/v/ursa-ai?style=flat-square&label=PyPI
|
|
88
|
+
[total-downloads]: https://img.shields.io/pepy/dt/ursa-ai?style=flat-square&label=downloads&color=blue
|
|
@@ -34,7 +34,7 @@ dependencies = [
|
|
|
34
34
|
]
|
|
35
35
|
classifiers = [
|
|
36
36
|
"Operating System :: OS Independent",
|
|
37
|
-
"License :: OSI Approved ::
|
|
37
|
+
"License :: OSI Approved :: BSD License",
|
|
38
38
|
"Programming Language :: Python :: 3.10",
|
|
39
39
|
"Programming Language :: Python :: 3.11",
|
|
40
40
|
"Programming Language :: Python :: 3.12",
|
|
@@ -44,6 +44,7 @@ classifiers = [
|
|
|
44
44
|
|
|
45
45
|
[project.urls]
|
|
46
46
|
Homepage = "https://github.com/lanl/ursa"
|
|
47
|
+
Documentation = "https://github.com/lanl/ursa/tree/main/docs"
|
|
47
48
|
Repository = "https://github.com/lanl/ursa"
|
|
48
49
|
Issues = "https://github.com/lanl/ursa/issues"
|
|
49
50
|
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ursa-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Agents for science at LANL
|
|
5
5
|
Author-email: Mike Grosskopf <mikegros@lanl.gov>, Rahul Somasundaram <rsomasundaram@lanl.gov>, Arthur Lui <alui@lanl.gov>
|
|
6
6
|
Project-URL: Homepage, https://github.com/lanl/ursa
|
|
7
|
+
Project-URL: Documentation, https://github.com/lanl/ursa/tree/main/docs
|
|
7
8
|
Project-URL: Repository, https://github.com/lanl/ursa
|
|
8
9
|
Project-URL: Issues, https://github.com/lanl/ursa/issues
|
|
9
10
|
Classifier: Operating System :: OS Independent
|
|
10
|
-
Classifier: License :: OSI Approved ::
|
|
11
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
11
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -43,6 +44,9 @@ Dynamic: license-file
|
|
|
43
44
|
|
|
44
45
|
<img src="./logos/logo.png" alt="URSA Logo" width="200" height="200">
|
|
45
46
|
|
|
47
|
+
[![PyPI Version][pypi-version]](https://pypi.org/project/ursa-ai/)
|
|
48
|
+
[![PyPI Downloads][total-downloads]](https://pepy.tech/projects/ursa-ai)
|
|
49
|
+
|
|
46
50
|
The flexible agentic workflow for accelerating scientific tasks.
|
|
47
51
|
Composes information flow between agents for planning, code writing and execution, and online research to solve complex problems.
|
|
48
52
|
|
|
@@ -72,8 +76,8 @@ Documentation for each URSA agent:
|
|
|
72
76
|
- [Hypothesizer Agent](docs/hypothesizer_agent.md)
|
|
73
77
|
|
|
74
78
|
Documentation for combining agents:
|
|
75
|
-
- [ArXiv -> Execution for Materials](docs/combining_arxiv_and_execution.md
|
|
76
|
-
- [ArXiv -> Execution for Neutron Star Properties](docs/combining_arxiv_and_execution_neutronStar.md
|
|
79
|
+
- [ArXiv -> Execution for Materials](docs/combining_arxiv_and_execution.md)
|
|
80
|
+
- [ArXiv -> Execution for Neutron Star Properties](docs/combining_arxiv_and_execution_neutronStar.md)
|
|
77
81
|
|
|
78
82
|
# Sandboxing
|
|
79
83
|
The Execution Agent is allowed to run system commands and write/run code. Being able to execute arbitrary system commands or write
|
|
@@ -99,7 +103,12 @@ You have a duty for ensuring that you use URSA responsibly.
|
|
|
99
103
|
Follow installation instructions
|
|
100
104
|
[here](https://docs.astral.sh/uv/getting-started/installation/)
|
|
101
105
|
|
|
106
|
+
* [`ruff`](https://docs.astral.sh/ruff/)
|
|
107
|
+
* An extremely fast Python linter and code formatter, written in Rust.
|
|
108
|
+
* After installing `uv`, you can install just ruff `uv tool install ruff`
|
|
109
|
+
|
|
102
110
|
* [`just`](https://github.com/casey/just)
|
|
111
|
+
* A modern way to save and run project-specific commands
|
|
103
112
|
* After installing `uv`, you can install just with `uv tool install rust-just`
|
|
104
113
|
|
|
105
114
|
## Development Team
|
|
@@ -116,3 +125,6 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
|
116
125
|
- *Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.*
|
|
117
126
|
|
|
118
127
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
128
|
+
|
|
129
|
+
[pypi-version]: https://img.shields.io/pypi/v/ursa-ai?style=flat-square&label=PyPI
|
|
130
|
+
[total-downloads]: https://img.shields.io/pepy/dt/ursa-ai?style=flat-square&label=downloads&color=blue
|
|
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
|