Skip to content
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
10 changes: 5 additions & 5 deletions packages/models/src/models/google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export const googleModels = [
name: "Gemini 1.5 Pro",
family: "google",
deprecatedAt: undefined,
deactivatedAt: undefined,
deactivatedAt: new Date("2025-09-20"),
providers: [
{
providerId: "google-ai-studio",
Expand All @@ -254,7 +254,7 @@ export const googleModels = [
contextSize: 1000000,
maxOutput: undefined,
streaming: true,
vision: false,
vision: true,
tools: true,
},
],
Expand All @@ -264,7 +264,7 @@ export const googleModels = [
name: "Gemini 1.5 Flash",
family: "google",
deprecatedAt: undefined,
deactivatedAt: undefined,
deactivatedAt: new Date("2025-09-20"),
providers: [
{
providerId: "google-ai-studio",
Expand All @@ -275,7 +275,7 @@ export const googleModels = [
contextSize: 1000000,
maxOutput: undefined,
streaming: true,
vision: false,
vision: true,
tools: true,
},
],
Expand All @@ -285,7 +285,7 @@ export const googleModels = [
name: "Gemini 1.5 Flash 8B",
family: "google",
deprecatedAt: undefined,
deactivatedAt: undefined,
deactivatedAt: new Date("2025-09-20"),
providers: [
{
providerId: "google-ai-studio",
Expand Down
4 changes: 2 additions & 2 deletions scripts/build-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ NC='\033[0m' # No Color
REGISTRY="ghcr.io"
REPOSITORY_BASE="theopenco/llmgateway"
PLATFORMS=("linux/amd64" "linux/arm64")
SPLIT_APPS=("api" "gateway" "ui" "docs")
SPLIT_APPS=("api" "gateway" "playground" "ui" "docs")

# Function to print colored output
print_status() {
Expand Down Expand Up @@ -215,7 +215,7 @@ wait_for_builds() {
fi
rm -f "/tmp/build_result_unified"
fi


# Return failure if any builds failed
if [[ ${#failed_builds[@]} -gt 0 ]]; then
Expand Down
Loading