Enhance OllamaAPI and documentation for structured responses

- Updated OllamaAPI to return an instance of OllamaResult instead of OllamaStructuredResult for structured responses.
- Removed the obsolete OllamaStructuredResult class.
- Added new methods in OllamaResult for retrieving structured responses as a Map or mapped to a specific class type.
- Updated integration tests to validate the new structured response functionality.
- Improved Makefile with a new full-build target for building the project.
This commit is contained in:
Amith Koujalgi
2025-03-24 15:30:00 +05:30
parent 407b7eb280
commit 2d7902167b
6 changed files with 417 additions and 129 deletions

View File

@@ -7,6 +7,9 @@ dev:
pre-commit install --install-hooks
build:
mvn -B clean install -Dgpg.skip=true
full-build:
mvn -B clean install
unit-tests: