Skip to content

Commit

Permalink
Adds workbench-app workflow (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
markwaddle authored Sep 30, 2024
1 parent a7c7bc5 commit 69a5c1a
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 24 deletions.
85 changes: 85 additions & 0 deletions .github/workflows/workbench-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: workbench-app build and deploy

on:
push:
branches:
- main
paths:
- "workbench-app/**"
- ".github/workflows/workbench-app.yml"
pull_request:
branches:
- main
paths:
- "workbench-app/**"
- ".github/workflows/workbench-app.yml"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Node.js version
uses: actions/setup-node@v4
with:
node-version: "20.x"

- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run test --if-present
working-directory: ./workbench-app
env:
NODE_OPTIONS: "--max_old_space_size=8192"

- name: Zip artifact for deployment
if: github.event_name != 'pull_request'
run: zip semantic-workbench-release.zip . -r
working-directory: ./workbench-app/build

- name: Upload artifact for deployment job
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: semantic-workbench-node-app
path: ./workbench-app/build/semantic-workbench-release.zip

deploy:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
needs: build
environment:
name: production
permissions:
id-token: write #This is required for requesting the JWT

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v4
with:
name: semantic-workbench-node-app

- name: Unzip artifact for deployment
run: unzip semantic-workbench-release.zip

- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

- name: "Deploy to Azure Web App"
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: ${{ secrets.AZURE_WORKBENCH_APP_SERVICE_NAME }}
slot-name: "Production"
package: .
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: workbench service test and deploy
name: workbench-service test and deploy

on:
pull_request:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,29 +189,30 @@ async def generate_response(
# we're only expecting text blocks for now, so raise an error if we get a ToolUseBlock
content = completion.content
deepmerge.always_merger.merge(metadata, {"debug": {"response": completion.model_dump_json()}})
if isinstance(content, list):
for item in content:
if isinstance(item, anthropic.types.TextBlock):
return GenerateResponseResult(
response=item.text,
metadata=metadata,
)
elif isinstance(item, anthropic.types.ToolUseBlock):
return GenerateResponseResult(
error="Received a ToolUseBlock, which is not supported",
metadata=metadata,
)
else:
return GenerateResponseResult(
error="Received an unexpected response",
metadata=metadata,
)
else:
if not isinstance(content, list):
return GenerateResponseResult(
error="Content is not a list",
metadata=metadata,
)

for item in content:
if isinstance(item, anthropic.types.TextBlock):
return GenerateResponseResult(
response=item.text,
metadata=metadata,
)

if isinstance(item, anthropic.types.ToolUseBlock):
return GenerateResponseResult(
error="Received a ToolUseBlock, which is not supported",
metadata=metadata,
)

return GenerateResponseResult(
error="Received an unexpected response",
metadata=metadata,
)

except Exception as e:
return exception_to_generate_response_result(e, metadata)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ export const CustomizedArrayFieldTemplate: React.FC<ArrayFieldTemplateProps> = (
const { items, canAdd, onAddClick, className, disabled, schema, uiSchema, title, formData, rawErrors } = props;
const classes = useClasses();

const hideTitle = uiSchema?.['ui:options']?.['hide_title'] === true ?? false;
const hideTitle = uiSchema?.['ui:options']?.['hide_title'] === true;

const collapsed = uiSchema?.['ui:options']?.['collapsed'] === true ?? false;
const collapsed = uiSchema?.['ui:options']?.['collapsed'] === true;
const openItems: AccordionItemValue[] = [];
if (!collapsed) {
for (let i = 0; i < items.length; i++) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ export const CustomizedObjectFieldTemplate: React.FC<ObjectFieldTemplateProps> =
const { title, description, properties, uiSchema, idSchema, schema } = props;
const classes = useClasses();

const hideTitle = uiSchema?.['ui:options']?.['hide_title'] ?? false;
const hideTitle = uiSchema?.['ui:options']?.['hide_title'];

const isCollapsed = uiSchema?.['ui:options']?.['collapsed'] === true ?? false;
const isCollapsible = isCollapsed || (uiSchema?.['ui:options']?.['collapsible'] === true ?? false);
const isCollapsed = uiSchema?.['ui:options']?.['collapsed'] === true;
const isCollapsible = isCollapsed || uiSchema?.['ui:options']?.['collapsible'] === true;
const openItems = isCollapsed ? [] : properties.map((_, index) => index);

if (isCollapsible) {
Expand Down

0 comments on commit 69a5c1a

Please sign in to comment.