-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5724 from Arize-ai/prompts
feat(prompts)!: prompt template management
- Loading branch information
Showing
560 changed files
with
52,065 additions
and
6,415 deletions.
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
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
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
56 changes: 56 additions & 0 deletions
56
.github/workflows/typescript-packages-publish-experimental.yml
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,56 @@ | ||
name: Publish Any Pull Request | ||
# TODO: Only publish on pull requests by arize team members | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
# JOB to run change detection | ||
changes: | ||
runs-on: ubuntu-latest | ||
# Required permissions | ||
permissions: | ||
pull-requests: read | ||
# Set job outputs to values from filter step | ||
outputs: | ||
workflow_file: ${{ steps.filter.outputs.workflow_file }} | ||
phoenix-client: ${{ steps.filter.outputs.phoenix-client }} | ||
steps: | ||
# For pull requests it's not necessary to checkout the code | ||
- uses: dorny/paths-filter@v3 | ||
id: filter | ||
with: | ||
filters: | | ||
phoenix-client: | ||
- 'js/packages/phoenix-client/**' | ||
workflow_file: | ||
- '.github/workflows/typescript-packages-publish-experimental.yml' | ||
publish-experimental-packages: | ||
needs: changes | ||
if: ${{ needs.changes.outputs.phoenix-client == 'true' || needs.changes.outputs.workflow_file == 'true' }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
# workaround for broken corepack https://github.com/nodejs/corepack/issues/612 | ||
- run: | | ||
npm i -g corepack@latest | ||
corepack enable | ||
working-directory: ./js | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
|
||
- name: Install dependencies | ||
working-directory: ./js | ||
run: pnpm install | ||
|
||
- name: Build | ||
working-directory: ./js | ||
run: pnpm -r build | ||
|
||
- name: Publish | ||
working-directory: ./js | ||
run: pnpx pkg-pr-new publish ./packages/phoenix-client |
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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
<style> | ||
body { | ||
font-family: 'Roboto', sans-serif; | ||
body, | ||
.docs-story { | ||
font-family: "Roboto", sans-serif; | ||
color: var(--ac-global-text-color-900); | ||
background-color: var(--ac-global-color-grey-75); | ||
} | ||
</style> | ||
</style> |
Oops, something went wrong.