Files
langchaingo/examples/Makefile
T
Travis Cline 6c81282073 examples: Fix examples and complete linting upgrade (#1288)
* examples: update examples, clean up module declarations

- Fix and relax lint rules (for now)
- Clean up and fix module declarations
- Add .gitattributes to mark go.sum as binary

* ci: separate and enhance CI workflows

- Split example builds into dedicated workflow
- Add comprehensive test coverage reporting
- Improve CI structure with matrix testing
- Add race condition testing
- Add automated PR coverage comments

* test: improve test reliability and agent message handling

- Simplify MRKL agent test to use basic math calculation
- Update OpenAI functions agent to use ToolChatMessage
- Add proper environment checks for Zep integration tests

* agents: fix issue in tool call handling for openai function agent
2025-06-03 07:52:03 -07:00

18 lines
416 B
Makefile

SYNC_REF?=latest
.PHONY: sync
sync: ## Sync all go.mod files
@sh .update-all-to-latest.sh ${SYNC_REF}
.PHONY: install-all
install-all: ## Add go work files to all examples
@find . -name go.mod -execdir go install \;
.PHONY: tidy-all
tidy-all: ## Tidy all go.mod files
@find . -name go.mod -execdir go mod tidy \;
.PHONY: fmt-all
fmt-all: ## Run go fmt on all examples
@find . -name go.mod -execdir go fmt \;