Skip to content

Commit b33b473

Browse files
authored
Release v4.4.1 into Main
2 parents b647273 + e99be75 commit b33b473

File tree

9 files changed

+47
-10
lines changed

9 files changed

+47
-10
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# v4.4.1
2+
## Bug Fixes
3+
- Updated OpenSearch vector store creation to support private VPCs
4+
5+
## System Improvements
6+
- LISA now supports P5 Instances!
7+
8+
## Acknowledgements
9+
* @bedanley
10+
* @estohlmann
11+
* @dustins
12+
13+
**Full Changelog**: https://github.com/awslabs/LISA/compare/v4.4.0...v4.4.1
14+
115
# v4.4.0
216
## Key Features
317
### Image Generation

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.4.0
1+
4.4.1

lib/schema/configSchema.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,27 @@ export class Ec2Metadata {
342342
maxThroughput: 400,
343343
vCpus: 96,
344344
},
345+
'p5.48xlarge': {
346+
memory: 2000 * 1000,
347+
gpuCount: 8,
348+
nvmePath: '/dev/nvme1n1',
349+
maxThroughput: 3200,
350+
vCpus: 192,
351+
},
352+
'p5e.48xlarge': {
353+
memory: 2000 * 1000,
354+
gpuCount: 8,
355+
nvmePath: '/dev/nvme1n1',
356+
maxThroughput: 3200,
357+
vCpus: 192,
358+
},
359+
'p5en.48xlarge': {
360+
memory: 2000 * 1000,
361+
gpuCount: 8,
362+
nvmePath: '/dev/nvme1n1',
363+
maxThroughput: 3200,
364+
vCpus: 192,
365+
},
345366
};
346367

347368
/**
@@ -760,6 +781,7 @@ export const RawConfigObject = z.object({
760781
subnets: z.array(z.object({
761782
subnetId: z.string().startsWith('subnet-'),
762783
ipv4CidrBlock: z.string(),
784+
availabilityZone: z.string().describe('Specify the availability zone for the subnet in the format {region}{letter} (e.g., us-east-1a).'),
763785
})).optional().describe('Array of subnet objects for the application. These contain a subnetId(e.g. [subnet-fedcba9876543210] and ipv4CidrBlock'),
764786
securityGroupConfig: SecurityGroupConfigSchema.optional(),
765787
deploymentStage: z.string().default('prod').describe('Deployment stage for the application.'),

lib/user-interface/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lisa-web",
33
"private": true,
4-
"version": "4.4.0",
4+
"version": "4.4.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

lib/user-interface/react/src/components/chatbot/Chat.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ export default function Chat ({ sessionId }) {
597597
</SpaceBetween>
598598
</Button>
599599

600-
{ config?.configuration?.enabledComponents?.editPromptTemplate && (
600+
{ config?.configuration?.enabledComponents?.showPromptTemplateLibrary && (
601601
<>
602602
<Button variant='normal' onClick={() => {
603603
setPromptTemplateKey(new Date().toISOString());
@@ -749,7 +749,7 @@ export default function Chat ({ sessionId }) {
749749
iconName: 'insert-row',
750750
text: 'Add file to context'
751751
}] as ButtonGroupProps.Item[] : []),
752-
...(config?.configuration.enabledComponents.editPromptTemplate ? [{
752+
...(config?.configuration.enabledComponents.showPromptTemplateLibrary ? [{
753753
type: 'icon-button',
754754
id: 'insert-prompt-template',
755755
iconName: 'contact',

lisa-sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">=3.11"
33

44
[tool.poetry]
55
name = "lisapy"
6-
version = "4.4.0"
6+
version = "4.4.1"
77
description = "A simple SDK to help you interact with LISA. LISA is an LLM hosting solution for AWS dedicated clouds or ADCs."
88
authors = ["Steve Goley <[email protected]>"]
99
readme = "README.md"

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@awslabs/lisa",
3-
"version": "4.4.0",
3+
"version": "4.4.1",
44
"description": "A scalable infrastructure-as-code solution for self-hosting and orchestrating LLM inference with RAG capabilities, providing low-latency access to generative AI and embedding models across multiple providers.",
55
"homepage": "https://awslabs.github.io/LISA/",
66
"license": "Apache-2.0",

vector_store_deployer/src/lib/opensearch.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ export class OpenSearchVectorStoreStack extends PipelineStack {
5858
subnetSelection = {
5959
subnets: props.config.subnets?.map((subnet, index) => Subnet.fromSubnetAttributes(this, index.toString(), {
6060
subnetId: subnet.subnetId,
61-
ipv4CidrBlock: subnet.ipv4CidrBlock
61+
ipv4CidrBlock: subnet.ipv4CidrBlock,
62+
availabilityZone: subnet.availabilityZone
6263
}))
6364
};
6465
}

0 commit comments

Comments
 (0)