mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-21 00:45:22 -04:00
6c81282073
* 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
18 lines
416 B
Makefile
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 \;
|