Skip to content

Commit 801fecf

Browse files
authored
add anthropic agent deep research example (#635)
Signed-off-by: Niels Bantilan <niels.bantilan@gmail.com>
1 parent 410adcf commit 801fecf

File tree

3 files changed

+952
-13
lines changed

3 files changed

+952
-13
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ dist: clean
3030

3131
.PHONY: dist
3232
dist-plugins: clean
33-
for plugin in plugins/*; do \
33+
# set FLYTE_PLUGIN_DIST to the directory of a specific plugin to build
34+
for plugin in $${FLYTE_PLUGIN_DIST:-plugins/*}; do \
3435
if [ -d "$$plugin" ]; then \
3536
uv run python -m build --wheel --installer uv --outdir ./dist "$$plugin"; \
3637
fi \

0 commit comments

Comments
 (0)