Skip to content
Draft
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 USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ From MAP top-right account icon, or by routed requests from some features (e.g.,

Screen title: **Flight Intelligence**

Powered by Gemini 2.5 Pro with Google Search integration.
Powered by Gemini 3.6 Flash with Google Search integration.

Capabilities:

Expand Down Expand Up @@ -1953,7 +1953,7 @@ If the IFD has an ADS-B receiver, AvareX also picks up its **Capstone** ADS-B tr

- Current Pro AI workflows are targeted for iOS/Android only.
- Access from map account icon → Pro Services → Flight Intelligence.
- Uses Gemini 2.5 Pro with Google Search integration.
- Uses Gemini 3.6 Flash with Google Search integration.
- Source threads:
- AI feature thread:
`https://groups.google.com/g/apps4av-forum/c/wWZUn6TNG1w`
Expand Down
Binary file modified assets/docs/USER_MANUAL.pdf
Binary file not shown.
8 changes: 7 additions & 1 deletion lib/ai/ai_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ class AiScreen extends StatefulWidget {
class AiScreenState extends State<AiScreen> {

bool _clear = false;
final _model = FirebaseAI.vertexAI().generativeModel(model: 'gemini-2.5-pro', tools: [Tool.googleSearch()]);
// gemini-2.5-pro retires Oct 2026. Use stable Gemini 3.6 Flash (Vertex
// recommended migration path) rather than gemini-3.1-pro-preview, which
// previously failed on Vertex with "attachment is not supported".
final _model = FirebaseAI.vertexAI().generativeModel(
model: 'gemini-3.6-flash',
tools: [Tool.googleSearch()],
);
bool _isSending = false;
final TextEditingController _editingController = TextEditingController();

Expand Down
Loading