Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
dbc4ec7
change tool names and update prompts and send examples to beaker
satchelbaldwin May 16, 2025
f59f13d
add add_integration example and make current with beaker, change api …
satchelbaldwin May 27, 2025
26a021e
add integration yaml handling with FileContentsManager
satchelbaldwin Jun 6, 2025
eb80574
add fixes for frontend required actions
satchelbaldwin Jun 6, 2025
cab4dc1
fix: backend folder directories
satchelbaldwin Jun 17, 2025
12cb9a8
Merge branch 'main' into examples-and-integrations
satchelbaldwin Jun 17, 2025
fa14f94
handle actions in beaker-kernel
satchelbaldwin Jun 17, 2025
539ca7a
Switch biome to default to notebook view
mattprintz Jun 20, 2025
be8b2cf
Refactor to match Datasource->Integration name change
mattprintz Jun 20, 2025
c0fdf37
Checkpoint on work
mattprintz Jun 23, 2025
483dcbf
Fixes for end-to-end
mattprintz Jun 23, 2025
52022ba
UNFINISHED (includes test stubs): remove adhoc handling from biome in…
satchelbaldwin Jun 26, 2025
438bd83
change to match the baseintegrationprovider now that mutable is diffe…
satchelbaldwin Jun 26, 2025
7d9cbfd
change yaml to new format
satchelbaldwin Jun 26, 2025
9ca293c
change adhoc init based on beaker-kernel changes
satchelbaldwin Jun 27, 2025
2b55eba
add: tag all resources by uuid, treat examples as resources, move to …
satchelbaldwin Jul 1, 2025
903d6a6
change: move to uuids instead of name-based slugs
satchelbaldwin Jul 9, 2025
4006a65
name integratiosn to specialist agents to match frontend editor in be…
satchelbaldwin Jul 9, 2025
42df440
fix: new yaml format
satchelbaldwin Jul 14, 2025
38137ae
add: changes for beaker-kernel integrations typing changes
satchelbaldwin Jul 15, 2025
a226ca8
fix interpolation migration bugs causing invalid APIs
satchelbaldwin Jul 15, 2025
325eefd
update pyproject toml and docker builds
satchelbaldwin Jul 15, 2025
394b35b
Merge branch 'main' into lib-integration-update-adhoc
satchelbaldwin Jul 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ COPY --chown=1000:1000 . /jupyter
RUN rm -f /jupyter/.beaker.conf
RUN rm -f /jupyter/.env

RUN uv pip install --system -v -e /jupyter
RUN uv pip install --system /jupyter

RUN chown jupyter:jupyter -R /usr/local/lib/python3.11/site-packages/biome/adhoc_data/

RUN mkdir -m 777 /var/run/beaker

Expand All @@ -28,11 +30,5 @@ ENV BEAKER_SUBKERNEL_USER=user
ENV BEAKER_RUN_PATH=/var/run/beaker
ENV BEAKER_APP=biome.app.BiomeApp

RUN ln -s /jupyter/src/biome/datasources /home/user/datasources
# subkernel access / file pane
RUN ln -s /jupyter/data /home/user/data
# agent path resolution
RUN ln -s /jupyter/data /home/jupyter/data

# Service
CMD ["python", "-m", "beaker_kernel.service.server", "--ip", "0.0.0.0"]
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "biome"
dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
license = "MIT"
keywords = []
authors = [
Expand All @@ -25,9 +25,9 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"beaker-kernel~=1.11.0",
"beaker-kernel~=1.12.0",
"adhoc-api~=2.4.0",
"archytas~=1.4.0",
"archytas~=1.5.0",
"requests",
"PyYAML",
"idc-index",
Expand Down
1 change: 0 additions & 1 deletion rest_api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ FROM python:3.11.5
EXPOSE 8001

COPY ./rest_api /rest_api
COPY ./data /data
WORKDIR /rest_api

RUN pip install --upgrade --no-cache-dir pip
Expand Down
446 changes: 446 additions & 0 deletions src/biome/adhoc_data/datasources/ahs/api.yaml

Large diffs are not rendered by default.

660 changes: 660 additions & 0 deletions src/biome/adhoc_data/datasources/alphagenome/api.yaml

Large diffs are not rendered by default.

483 changes: 483 additions & 0 deletions src/biome/adhoc_data/datasources/aqs/api.yaml

Large diffs are not rendered by default.

Loading