-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[a2] Create a place for the A2 framework
- **Stub out A2 package.** - **Add Gemini BGL** - **Get the basic test framework in.** - **Add template for new tests.** - **Fix up the version for the future bump.** - **docs(changeset): Create a place for the A2 framework** Progress on #4101.
- Loading branch information
Showing
8 changed files
with
340 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@breadboard-ai/a2": minor | ||
--- | ||
|
||
Create a place for the A2 framework |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.env | ||
tsconfig.tsbuildinfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Your README goes here |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "@breadboard-ai/a2", | ||
"publishConfig": { | ||
"registry": "https://wombat-dressing-room.appspot.com" | ||
}, | ||
"version": "0.0.1", | ||
"description": "Breadboard Components for building AI systems", | ||
"exports": { | ||
"gemini": "./bgl/a2-gemini.bgl.json" | ||
}, | ||
"type": "module", | ||
"repository": { | ||
"directory": "packages/a2", | ||
"type": "git", | ||
"url": "https://github.com/breadboard-ai/breadboard.git" | ||
}, | ||
"keywords": [], | ||
"author": "Google Labs Team", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/breadboard-ai/breadboard/issues" | ||
}, | ||
"homepage": "https://github.com/breadboard-ai/breadboard#readme", | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^7.18.0", | ||
"@typescript-eslint/parser": "^7.18.0", | ||
"@types/node": "^22.0.0", | ||
"typescript": "^5.6.3" | ||
} | ||
} |