Skip to content

Commit

Permalink
[a2] Create a place for the A2 framework
Browse files Browse the repository at this point in the history
- **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
dglazkov authored Jan 11, 2025
1 parent f14b8bd commit a69302b
Show file tree
Hide file tree
Showing 8 changed files with 340 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/sixty-parents-raise.md
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
16 changes: 15 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions packages/a2/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.env
tsconfig.tsbuildinfo
1 change: 1 addition & 0 deletions packages/a2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Your README goes here
104 changes: 104 additions & 0 deletions packages/a2/bgl/a2-gemini-test.bgl.json

Large diffs are not rendered by default.

79 changes: 79 additions & 0 deletions packages/a2/bgl/a2-gemini.bgl.json

Large diffs are not rendered by default.

104 changes: 104 additions & 0 deletions packages/a2/bgl/template-test.bgl.json

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions packages/a2/package.json
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"
}
}

0 comments on commit a69302b

Please sign in to comment.