versifai 0.1.0__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 (149) hide show
  1. versifai-0.1.0/.github/workflows/ci.yml +82 -0
  2. versifai-0.1.0/.github/workflows/docs.yml +28 -0
  3. versifai-0.1.0/.github/workflows/publish.yml +35 -0
  4. versifai-0.1.0/.gitignore +207 -0
  5. versifai-0.1.0/.pre-commit-config.yaml +7 -0
  6. versifai-0.1.0/CHANGELOG.md +18 -0
  7. versifai-0.1.0/CLAUDE.md +684 -0
  8. versifai-0.1.0/CONTRIBUTING.md +77 -0
  9. versifai-0.1.0/LICENSE +31 -0
  10. versifai-0.1.0/Makefile +42 -0
  11. versifai-0.1.0/PKG-INFO +490 -0
  12. versifai-0.1.0/README.md +409 -0
  13. versifai-0.1.0/docs/CNAME +1 -0
  14. versifai-0.1.0/docs/api/core.md +51 -0
  15. versifai-0.1.0/docs/api/data-agents.md +45 -0
  16. versifai-0.1.0/docs/api/science-agents.md +19 -0
  17. versifai-0.1.0/docs/api/story-agents.md +19 -0
  18. versifai-0.1.0/docs/architecture.md +429 -0
  19. versifai-0.1.0/docs/assets/FullLogo_Transparent_NoBuffer.png +0 -0
  20. versifai-0.1.0/docs/assets/IconOnly_NoBuffer.png +0 -0
  21. versifai-0.1.0/docs/assets/data_engineer_notebook.png +0 -0
  22. versifai-0.1.0/docs/assets/logo.png +0 -0
  23. versifai-0.1.0/docs/changelog.md +1 -0
  24. versifai-0.1.0/docs/contributing.md +3 -0
  25. versifai-0.1.0/docs/custom-agents.md +80 -0
  26. versifai-0.1.0/docs/data-engineer.md +117 -0
  27. versifai-0.1.0/docs/data-scientist.md +109 -0
  28. versifai-0.1.0/docs/getting-started.md +229 -0
  29. versifai-0.1.0/docs/index.md +110 -0
  30. versifai-0.1.0/docs/javascripts/extra.js +71 -0
  31. versifai-0.1.0/docs/run-management.md +546 -0
  32. versifai-0.1.0/docs/storyteller.md +118 -0
  33. versifai-0.1.0/docs/stylesheets/extra.css +89 -0
  34. versifai-0.1.0/docs/tool-inventory.md +1083 -0
  35. versifai-0.1.0/docs/tutorial-world-development.md +683 -0
  36. versifai-0.1.0/examples/world_development/__init__.py +0 -0
  37. versifai-0.1.0/examples/world_development/engineer_config.py +352 -0
  38. versifai-0.1.0/examples/world_development/notebooks/00_download_data.py +95 -0
  39. versifai-0.1.0/examples/world_development/notebooks/01_run_engineer.py +150 -0
  40. versifai-0.1.0/examples/world_development/notebooks/02_run_scientist.py +148 -0
  41. versifai-0.1.0/examples/world_development/notebooks/03_run_storyteller.py +146 -0
  42. versifai-0.1.0/examples/world_development/research_configs/__init__.py +0 -0
  43. versifai-0.1.0/examples/world_development/research_configs/global_development.py +557 -0
  44. versifai-0.1.0/examples/world_development/storyteller_config.py +306 -0
  45. versifai-0.1.0/mkdocs.yml +103 -0
  46. versifai-0.1.0/pyproject.toml +159 -0
  47. versifai-0.1.0/src/versifai/__init__.py +3 -0
  48. versifai-0.1.0/src/versifai/_utils/__init__.py +1 -0
  49. versifai-0.1.0/src/versifai/_utils/fips.py +84 -0
  50. versifai-0.1.0/src/versifai/_utils/naming.py +72 -0
  51. versifai-0.1.0/src/versifai/core/__init__.py +22 -0
  52. versifai-0.1.0/src/versifai/core/agent.py +357 -0
  53. versifai-0.1.0/src/versifai/core/config.py +61 -0
  54. versifai-0.1.0/src/versifai/core/display.py +417 -0
  55. versifai-0.1.0/src/versifai/core/llm.py +411 -0
  56. versifai-0.1.0/src/versifai/core/memory.py +400 -0
  57. versifai-0.1.0/src/versifai/core/run_manager.py +365 -0
  58. versifai-0.1.0/src/versifai/core/tools/__init__.py +10 -0
  59. versifai-0.1.0/src/versifai/core/tools/base.py +142 -0
  60. versifai-0.1.0/src/versifai/core/tools/catalog_writer.py +727 -0
  61. versifai-0.1.0/src/versifai/core/tools/column_renamer.py +184 -0
  62. versifai-0.1.0/src/versifai/core/tools/dynamic_tool_builder.py +381 -0
  63. versifai-0.1.0/src/versifai/core/tools/registry.py +52 -0
  64. versifai-0.1.0/src/versifai/core/tools/save_note.py +166 -0
  65. versifai-0.1.0/src/versifai/core/tools/view_chart.py +159 -0
  66. versifai-0.1.0/src/versifai/core/tools/visualization.py +1389 -0
  67. versifai-0.1.0/src/versifai/core/tools/web_scraper.py +702 -0
  68. versifai-0.1.0/src/versifai/core/tools/web_search.py +188 -0
  69. versifai-0.1.0/src/versifai/data_agents/__init__.py +11 -0
  70. versifai-0.1.0/src/versifai/data_agents/analyst/__init__.py +1 -0
  71. versifai-0.1.0/src/versifai/data_agents/analyst/agent.py +270 -0
  72. versifai-0.1.0/src/versifai/data_agents/analyst/prompts.py +516 -0
  73. versifai-0.1.0/src/versifai/data_agents/engineer/__init__.py +1 -0
  74. versifai-0.1.0/src/versifai/data_agents/engineer/agent.py +1514 -0
  75. versifai-0.1.0/src/versifai/data_agents/engineer/config.py +277 -0
  76. versifai-0.1.0/src/versifai/data_agents/engineer/planner.py +149 -0
  77. versifai-0.1.0/src/versifai/data_agents/engineer/prompts.py +843 -0
  78. versifai-0.1.0/src/versifai/data_agents/engineer/tools/__init__.py +1 -0
  79. versifai-0.1.0/src/versifai/data_agents/engineer/tools/data_profiler.py +248 -0
  80. versifai-0.1.0/src/versifai/data_agents/engineer/tools/data_transformer.py +994 -0
  81. versifai-0.1.0/src/versifai/data_agents/engineer/tools/doc_reader.py +398 -0
  82. versifai-0.1.0/src/versifai/data_agents/engineer/tools/file_extractor.py +147 -0
  83. versifai-0.1.0/src/versifai/data_agents/engineer/tools/file_reader.py +296 -0
  84. versifai-0.1.0/src/versifai/data_agents/engineer/tools/schema_designer.py +561 -0
  85. versifai-0.1.0/src/versifai/data_agents/engineer/tools/volume_explorer.py +132 -0
  86. versifai-0.1.0/src/versifai/data_agents/models/__init__.py +16 -0
  87. versifai-0.1.0/src/versifai/data_agents/models/schema.py +122 -0
  88. versifai-0.1.0/src/versifai/data_agents/models/source.py +121 -0
  89. versifai-0.1.0/src/versifai/data_agents/models/state.py +119 -0
  90. versifai-0.1.0/src/versifai/py.typed +0 -0
  91. versifai-0.1.0/src/versifai/science_agents/__init__.py +9 -0
  92. versifai-0.1.0/src/versifai/science_agents/scientist/__init__.py +1 -0
  93. versifai-0.1.0/src/versifai/science_agents/scientist/agent.py +1353 -0
  94. versifai-0.1.0/src/versifai/science_agents/scientist/config.py +279 -0
  95. versifai-0.1.0/src/versifai/science_agents/scientist/prompts.py +1545 -0
  96. versifai-0.1.0/src/versifai/science_agents/scientist/tools/__init__.py +1 -0
  97. versifai-0.1.0/src/versifai/science_agents/scientist/tools/check_confounders.py +504 -0
  98. versifai-0.1.0/src/versifai/science_agents/scientist/tools/literature_review.py +379 -0
  99. versifai-0.1.0/src/versifai/science_agents/scientist/tools/log_model.py +323 -0
  100. versifai-0.1.0/src/versifai/science_agents/scientist/tools/model_fitting.py +1272 -0
  101. versifai-0.1.0/src/versifai/science_agents/scientist/tools/save_finding.py +174 -0
  102. versifai-0.1.0/src/versifai/science_agents/scientist/tools/statistical_analysis.py +1359 -0
  103. versifai-0.1.0/src/versifai/science_agents/scientist/tools/validate_silver.py +756 -0
  104. versifai-0.1.0/src/versifai/science_agents/scientist/tools/validate_statistics.py +734 -0
  105. versifai-0.1.0/src/versifai/story_agents/__init__.py +9 -0
  106. versifai-0.1.0/src/versifai/story_agents/storyteller/__init__.py +1 -0
  107. versifai-0.1.0/src/versifai/story_agents/storyteller/agent.py +897 -0
  108. versifai-0.1.0/src/versifai/story_agents/storyteller/config.py +226 -0
  109. versifai-0.1.0/src/versifai/story_agents/storyteller/prompts.py +644 -0
  110. versifai-0.1.0/src/versifai/story_agents/storyteller/tools/__init__.py +1 -0
  111. versifai-0.1.0/src/versifai/story_agents/storyteller/tools/cite_source.py +170 -0
  112. versifai-0.1.0/src/versifai/story_agents/storyteller/tools/evaluate_evidence.py +196 -0
  113. versifai-0.1.0/src/versifai/story_agents/storyteller/tools/read_chart.py +135 -0
  114. versifai-0.1.0/src/versifai/story_agents/storyteller/tools/read_findings.py +149 -0
  115. versifai-0.1.0/src/versifai/story_agents/storyteller/tools/read_table.py +136 -0
  116. versifai-0.1.0/src/versifai/story_agents/storyteller/tools/write_narrative.py +257 -0
  117. versifai-0.1.0/tests/__init__.py +0 -0
  118. versifai-0.1.0/tests/conftest.py +187 -0
  119. versifai-0.1.0/tests/test_core/__init__.py +0 -0
  120. versifai-0.1.0/tests/test_core/test_agent_handoff.py +587 -0
  121. versifai-0.1.0/tests/test_core/test_base_tool.py +191 -0
  122. versifai-0.1.0/tests/test_core/test_dynamic_tool_builder.py +124 -0
  123. versifai-0.1.0/tests/test_core/test_imports.py +70 -0
  124. versifai-0.1.0/tests/test_core/test_prompt_domain_agnostic.py +471 -0
  125. versifai-0.1.0/tests/test_core/test_run_manager.py +492 -0
  126. versifai-0.1.0/tests/test_core/test_save_note.py +70 -0
  127. versifai-0.1.0/tests/test_core/test_view_chart.py +67 -0
  128. versifai-0.1.0/tests/test_data_agents/__init__.py +0 -0
  129. versifai-0.1.0/tests/test_data_agents/test_data_profiler.py +75 -0
  130. versifai-0.1.0/tests/test_data_agents/test_doc_reader.py +105 -0
  131. versifai-0.1.0/tests/test_data_agents/test_file_reader.py +85 -0
  132. versifai-0.1.0/tests/test_data_agents/test_schema_designer.py +98 -0
  133. versifai-0.1.0/tests/test_data_agents/test_volume_explorer.py +61 -0
  134. versifai-0.1.0/tests/test_integration/__init__.py +0 -0
  135. versifai-0.1.0/tests/test_integration/conftest.py +143 -0
  136. versifai-0.1.0/tests/test_integration/test_agent_behavioral.py +468 -0
  137. versifai-0.1.0/tests/test_science_agents/__init__.py +0 -0
  138. versifai-0.1.0/tests/test_science_agents/test_check_confounders.py +104 -0
  139. versifai-0.1.0/tests/test_science_agents/test_model_fitting.py +149 -0
  140. versifai-0.1.0/tests/test_science_agents/test_save_finding.py +96 -0
  141. versifai-0.1.0/tests/test_science_agents/test_statistical_analysis.py +265 -0
  142. versifai-0.1.0/tests/test_science_agents/test_validate_silver.py +146 -0
  143. versifai-0.1.0/tests/test_science_agents/test_validate_statistics.py +147 -0
  144. versifai-0.1.0/tests/test_story_agents/__init__.py +0 -0
  145. versifai-0.1.0/tests/test_story_agents/test_cite_source.py +91 -0
  146. versifai-0.1.0/tests/test_story_agents/test_evaluate_evidence.py +227 -0
  147. versifai-0.1.0/tests/test_story_agents/test_read_findings.py +67 -0
  148. versifai-0.1.0/tests/test_story_agents/test_read_table.py +75 -0
  149. versifai-0.1.0/tests/test_story_agents/test_write_narrative.py +125 -0
@@ -0,0 +1,82 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ lint:
14
+ name: Lint
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-python@v5
19
+ with:
20
+ python-version: "3.12"
21
+ - name: Install dependencies
22
+ run: pip install ruff
23
+ - name: Ruff check
24
+ run: ruff check src/ tests/
25
+ - name: Ruff format check
26
+ run: ruff format --check src/ tests/
27
+
28
+ test:
29
+ name: Test (Python ${{ matrix.python-version }})
30
+ runs-on: ubuntu-latest
31
+ strategy:
32
+ fail-fast: false
33
+ matrix:
34
+ python-version: ["3.10", "3.11", "3.12"]
35
+ steps:
36
+ - uses: actions/checkout@v4
37
+ - uses: actions/setup-python@v5
38
+ with:
39
+ python-version: ${{ matrix.python-version }}
40
+ - name: Install package with dev dependencies
41
+ run: pip install -e ".[dev]"
42
+ - name: Run tests
43
+ run: pytest tests/ -v --tb=short -m "not integration"
44
+
45
+ type-check:
46
+ name: Type Check
47
+ runs-on: ubuntu-latest
48
+ steps:
49
+ - uses: actions/checkout@v4
50
+ - uses: actions/setup-python@v5
51
+ with:
52
+ python-version: "3.12"
53
+ - name: Install package with dev dependencies
54
+ run: pip install -e ".[dev]"
55
+ - name: Run mypy
56
+ run: mypy src/versifai --ignore-missing-imports
57
+
58
+ build:
59
+ name: Build
60
+ runs-on: ubuntu-latest
61
+ needs: [lint, test]
62
+ steps:
63
+ - uses: actions/checkout@v4
64
+ - uses: actions/setup-python@v5
65
+ with:
66
+ python-version: "3.12"
67
+ - name: Install build tools
68
+ run: pip install build
69
+ - name: Build package
70
+ run: python -m build
71
+ - name: Verify wheel contents
72
+ run: |
73
+ pip install dist/*.whl
74
+ python -c "from versifai.core import BaseAgent, LLMClient; print('Import OK')"
75
+ python -c "from versifai.data_agents import DataEngineerAgent; print('data_agents OK')"
76
+ python -c "from versifai.science_agents import DataScientistAgent; print('science_agents OK')"
77
+ python -c "from versifai.story_agents import StoryTellerAgent; print('story_agents OK')"
78
+ - name: Upload artifacts
79
+ uses: actions/upload-artifact@v4
80
+ with:
81
+ name: dist
82
+ path: dist/
@@ -0,0 +1,28 @@
1
+ name: Docs
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - "docs/**"
8
+ - "mkdocs.yml"
9
+ - "src/**"
10
+ - ".github/workflows/docs.yml"
11
+ workflow_dispatch:
12
+
13
+ permissions:
14
+ contents: write
15
+
16
+ jobs:
17
+ deploy:
18
+ name: Deploy docs
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - uses: actions/setup-python@v5
23
+ with:
24
+ python-version: "3.12"
25
+ - name: Install dependencies
26
+ run: pip install -e ".[docs]"
27
+ - name: Build and deploy
28
+ run: mkdocs gh-deploy --force
@@ -0,0 +1,35 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ permissions:
8
+ contents: read
9
+
10
+ jobs:
11
+ publish:
12
+ name: Build & Publish
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-python@v5
17
+ with:
18
+ python-version: "3.12"
19
+
20
+ - name: Install build tools
21
+ run: pip install build twine
22
+
23
+ - name: Build package
24
+ run: python -m build
25
+
26
+ - name: Verify wheel
27
+ run: |
28
+ pip install dist/*.whl
29
+ python -c "from versifai.core import BaseAgent, LLMClient; print('Import OK')"
30
+
31
+ - name: Publish to PyPI
32
+ env:
33
+ TWINE_USERNAME: __token__
34
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
35
+ run: twine upload dist/*
@@ -0,0 +1,207 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # Spyder project settings
148
+ .spyderproject
149
+ .spyproject
150
+
151
+ # Rope project settings
152
+ .ropeproject
153
+
154
+ # mkdocs documentation
155
+ /site
156
+
157
+ # mypy
158
+ .mypy_cache/
159
+ .dmypy.json
160
+ dmypy.json
161
+
162
+ # Pyre type checker
163
+ .pyre/
164
+
165
+ # pytype static type analyzer
166
+ .pytype/
167
+
168
+ # Cython debug symbols
169
+ cython_debug/
170
+
171
+ # PyCharm
172
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176
+ #.idea/
177
+
178
+ # Abstra
179
+ # Abstra is an AI-powered process automation framework.
180
+ # Ignore directories containing user credentials, local state, and settings.
181
+ # Learn more at https://abstra.io/docs
182
+ .abstra/
183
+
184
+ # Visual Studio Code
185
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
188
+ # you could uncomment the following to ignore the entire vscode folder
189
+ # .vscode/
190
+
191
+ # Ruff stuff:
192
+ .ruff_cache/
193
+
194
+ # PyPI configuration file
195
+ .pypirc
196
+
197
+ # Cursor
198
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
199
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
200
+ # refer to https://docs.cursor.com/context/ignore-files
201
+ .cursorignore
202
+ .cursorindexingignore
203
+
204
+ # Marimo
205
+ marimo/_static/
206
+ marimo/_lsp/
207
+ __marimo__/
@@ -0,0 +1,7 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ rev: v0.4.8
4
+ hooks:
5
+ - id: ruff
6
+ args: [--fix]
7
+ - id: ruff-format
@@ -0,0 +1,18 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.1.0] - 2026-02-25
9
+
10
+ ### Added
11
+
12
+ - Initial open-source release
13
+ - `versifai.core` -Reusable agentic framework with BaseAgent, LLMClient, AgentMemory, ToolRegistry
14
+ - `versifai.data_agents` -DataEngineerAgent and DataAnalystAgent for autonomous data pipeline construction
15
+ - `versifai.science_agents` -DataScientistAgent for autonomous research analysis
16
+ - `versifai.story_agents` -StoryTellerAgent for transforming research into narrative reports
17
+ - Shared tool library: visualization, web search, catalog writer, dynamic tool builder
18
+ - Example configurations for World Bank Development Indicators (World Development example)