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
4 changes: 2 additions & 2 deletions .github/workflows/spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
with:
path: .build
key: ${{needs.spm-package-resolved.outputs.cache_key}}
- name: Clone mock responses for Vertex AI unit tests
- name: Clone mock responses for Firebase AI Logic unit tests
run: scripts/update_vertexai_responses.sh
- name: Xcode
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
with:
path: .build
key: ${{needs.spm-package-resolved.outputs.cache_key}}
- name: Clone mock responses for Vertex AI unit tests
- name: Clone mock responses for Firebase AI Logic unit tests
run: scripts/update_vertexai_responses.sh
- name: Xcode
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
Expand Down
1 change: 0 additions & 1 deletion Carthage.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseMessagingBinary.j
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebasePerformanceBinary.json"
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseRemoteConfigBinary.json"
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseStorageBinary.json"
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseVertexAIBinary.json"
```
- Run `carthage update`
- Use Finder to open `Carthage/Build`.
Expand Down
5 changes: 1 addition & 4 deletions Dangerfile
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,7 @@ has_license_changes = didModify(["LICENSE"])
@has_crashlytics_api_changes = hasChangesIn("Crashlytics/Crashlytics/Public/")
@has_database_changes = hasChangesIn("FirebaseDatabase")
@has_database_api_changes = hasChangesIn("FirebaseDatabase/Sources/Public/")
@has_firebaseai_changes = hasChangesIn([
"FirebaseAI",
"FirebaseVertexAI"
])
@has_firebaseai_changes = hasChangesIn("FirebaseAI")
@has_firestore_changes = hasChangesIn(["Firestore/", "FirebaseFirestore.podspec"])
@has_firestore_api_changes = hasChangesIn("Firestore/Source/Public/")
@has_functions_changes = hasChangesIn(["FirebaseFunctions"])
Expand Down
2 changes: 1 addition & 1 deletion FirebaseAI/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Firebase AI SDK

- For developer documentation, please visit https://firebase.google.com/docs/vertex-ai.
- For developer documentation, please visit https://firebase.google.com/docs/ai-logic.
- Try out the [sample app](https://github.com/firebase/quickstart-ios/tree/main/firebaseai) to get started.

## Development
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@ For coverage report generation instructions, see [scripts/code_coverage_report/R
## Specific Component Instructions
See the sections below for any special instructions for those components.

### Firebase AI Logic

See the [Firebase AI Logic README](FirebaseAI#development) for instructions
about building and testing the SDK.

### Firebase Auth

For specific Firebase Auth development, refer to the [Auth Sample README](FirebaseAuth/Tests/Sample/README.md) for instructions about
Expand Down Expand Up @@ -235,11 +240,6 @@ at **Project Settings > Cloud Messaging > [Your Firebase App]**.
The iOS Simulator cannot register for remote notifications and will not receive push notifications.
To receive push notifications, follow the steps above and run the app on a physical device.

### Vertex AI for Firebase

See the [Vertex AI for Firebase README](FirebaseVertexAI#development) for
instructions about building and testing the SDK.

## Building with Firebase on Apple platforms

Firebase provides official beta support for macOS, Catalyst, and tvOS. visionOS and watchOS
Expand Down
2 changes: 1 addition & 1 deletion scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ Script to add a file to an Xcode target.

### [update_vertexai_responses.sh](https://github.com/firebase/firebase-ios-sdk/blob/main/scripts/update_vertexai_responses.sh)

Downloads mock response files for Vertex AI unit tests.
Downloads mock response files for the Firebase AI Logic unit tests.

### [xcresult_logs.py](https://github.com/firebase/firebase-ios-sdk/blob/main/scripts/xcresult_logs.py)

Expand Down
1 change: 0 additions & 1 deletion scripts/make_release_notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
'FirebaseFunctions/CHANGELOG.md': '{{cloud_functions}}',
'FirebaseRemoteConfig/CHANGELOG.md': '{{remote_config}}',
'FirebasePerformance/CHANGELOG.md': '{{perfmon}}',
'FirebaseVertexAI/CHANGELOG.md': '{{vertex_ai_in_firebase}}',

# Assumes firebase-ios-sdk and data-connect-ios-sdk are cloned to the same
# directory.
Expand Down
77 changes: 0 additions & 77 deletions scripts/spm_test_schemes/FirebaseVertexAIUnit.xcscheme

This file was deleted.

Loading