Skip to content

chore: refactor layout for multiple packages #99

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: lint
name: langchain
on:
pull_request:
paths:
- 'packages/toolbox-langchain/**'
- '!packages/toolbox-langchain/**/*.md'
pull_request_target:
types: [labeled]

Expand All @@ -29,6 +32,9 @@ jobs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
working-directory: ./packages/toolbox-langchain
permissions:
contents: 'read'
issues: 'write'
Expand Down
5 changes: 5 additions & 0 deletions CHANELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Please refer to each API's `CHANGELOG.md` file under the `packages/` directory

Changelogs
-----
- [toolbox-langchain==0.1.0](https://github.com/googleapis/genai-toolbox-langchain-python/tree/main/packages/toolbox-langchain/CHANGELOG.md)
File renamed without changes.
9 changes: 5 additions & 4 deletions DEVELOPER.md → packages/toolbox-langchain/DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ Below are the details to set up a development environment and run tests.

## Install
1. Clone the repository:
TODO: Correct repo URL
```bash
git clone https://github.com/googleapis/genai-toolbox-langchain-python
```
1. Navigate to the repo directory:
1. Navigate to the package directory:
```bash
cd genai-toolbox-langchain-python
cd genai-toolbox-langchain-python/packages/toolbox-langchain
```
1. Install the package in editable mode, so changes are reflected without
reinstall:
Expand All @@ -22,9 +23,9 @@ Below are the details to set up a development environment and run tests.
> those changes reflected immediately without reinstalling the package.

## Test
1. Navigate to the repo directory if needed:
1. Navigate to the package directory if needed:
```bash
cd genai-toolbox-langchain-python
cd genai-toolbox-langchain-python/packages/toolbox-langchain
```
1. Install the SDK and test dependencies:
```bash
Expand Down
Loading