Replies: 33 comments 184 replies
|
Debug Replay I see I can select topics like Face Recognition and LPR but I am not seeing any messages for ether of those when using the debug reply. Even for events that had LPR or Faces in them originally. I would particularly like to debug LPR with this mode and see both the plate images and the debug messages as detection runs over and over so I could try and tune it. GenAI Chat The icon for GenAI chat should probably not appear on the sidebar if NO GenAI agent has been configured. Chapters for review items in exports Nice addition |
|
Hello! Wonderful, now I don't have to make several discussions! 🤓 Feel free to ignore these. I am not sure which applies from your post:
Explore > Tracking Details for 1 Object
Export
Continuous history playback
Camera groups:
Intel iGPU Metrics page
Take care! ❤️ 0.18.0-ba4a6a5 |
|
Hardware Support Just wanted to note that I am on OLDER intel hardware, particularly a i7-7700T which is in that strange i965 / iHD switch over area and it still seems to be working fine using hwaccel_args: preset-vaapi . Just calling it out since some previous driver and FFMPEG changes have caused issues for older devices, just wanted to say I have not seen any new issues so far. |
|
looking forward to the GenAI Chat. Will this be acessible via local API or for example, Voice Agent in Home Assistant, so I can ask it a question like how fast was that last car going or what time was the person detected. etc, via automation in HA? |
|
I tried to switch to a v18 dev build a while ago, but got a cuda/onnx error, which seems to fit into the "hardware support/nvidia" category. I postet about this a while ago and kind of forgot about it: #22577 (reply in thread) I just tried again with build 6a2b914-tensorrt, which gives me the exact same error. If I can do anything to help narrow the cause down, let me know. :) |
|
All is working good, not found bugs, only higher cpu, gpu and tpu usage |
|
I am not really sure but it seems that snapshots are no longer provided to ..\clips\ directory? There seems to be no more any jpg files. I am using b6fd86a-rk built.
|
|
By the way, I also think the display of the current global settings is not very user-friendly. I suggest that when the global setting is disabled while the feature is enabled on individual cameras, the global settings page should display a reminder, informing users that this feature is turned on for certain specific cameras. |
|
Hi after upgrading to 0.18 almost all my camera mainly wireless have this playback issue tapo tpc110_20260504_204752-20260504_204812_typmlt.mp4c110 |
|
Intel Arc A380 running in Proxmox 9 with kernel 7.0. Interference speed ranges from 8ms to 11.15ms, averaging 9-10ms. If I remember corrected it was averaging 8ms with 0.17. I am assuming its not a concern due to new driver in 0.18? Other than that, no bug that I could find. Edit: I have genai review description disable on one of the 5 cameras under one of the profile. But it was still generating reviews description. It just started happening with the latest dev build. I will see if I can reproduce it. |
|
Hi |
|
Can we get openai whisperr capable api for whisperr? |
|
Thanks for all your work on this! I haven’t had time to test everything yet, but so far it’s working great.
|
|
Fellas, this is awesome. I'm trying out f448b25. I'm barely scratching the surface of what it can do, but I am trying to configure everything I can in the UI without touching the config, and I'm slowly but surely getting it. I did manage to get my llama.cpp model (Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf) configured 100% from the UI after a few tries-I kept putting the "/v1" at the end since I've been so used to using that for other stuff. While trying to get there, I clicked the link to the documentation on that settings page, and I guess it's dead https://docs.frigate.video/configuration/genai/config from here-
I then added an additional model, and the field there shows "gpt-4o" which didn't get replaced once I pushed "save." It printed
I didn't realize that putting When I got done with all that, I went to the chat tab and asked the Qwen model to keep an eye on the front door for me, which it said it would- I then walked outside and waved to see if it would let me know in the chatbox, but it didn't. I asked it if anyone had come by after I came inside, and it said no, so I asked it to review the most recent events, and it found me and showed snapshots of me. I'm not sure if that's expected behavior, but I was thinking I'd see it tell me it saw me in real time. Does asking it to "Watch a camera" just trigger it to turn on alerts for that camera or something? That's all I came up with so far. Pretty exciting stuff, highly anticipating this release! |
|
I may have missed it but there doesn't seem to be a way of editing the settings of a camera once it's been created. I have two examples:
Obviously, both can be rectified by editing the config. Additionally, noticed that trying to remove Openvino detector (with Frigate+ yolonas9 model) and add USB Coral resulted in model incompatibility error. This is understandable but I wasn't able to remove or change the Frigate+ model from the UI - a catch 22 situation but again, resolvable by editing the config. Finally, seeing this error repeated twice in the log:
This is with either OpenVINO or Coral detectors. |
|
Is it expected behavior that other enhancements (such as classification and LPR) do not work while rebuilding the semantic search index? |
|
When I migrated from 0.17 to 0.18.0-1f154a0 I received this error in my config: "Input should be 'chat', 'descriptions' or 'embeddings'" with relation to my GenAI configuration. It autopopulated new lines on it's own that were: I just switched out "vision" and "tools" for "descriptions" and "chat and it worked fine. Apart from that, so far so good! EDIT: Unrelated, sort of, but it's entirely ignorning the "reasoning budget" provider option. I've got llama-server initiated with "reasoning-budget 1" (to essentially disable it, I use this llama-server instance for HA now and I don't want it thinking) and I figured I could just up the reasoning-budget with that provider option via API calls, but it still just thinks for 1 token, ignoring that param. |
|
Working great (appreciate being able to use remotely running llama.cpp on GPU-accel HW for review summaries, embeddings, and chat! Looking forward to MCP and other enrichments being remote-capable) One thing I'm noticing is that on both iOS and Android, I'm getting two notifications for the MQTT topic |
|
I seem to have encountered a memory leak issue while using GenAI Embeddings. Here is the memray report file: |
|
Not sure if this was true in 0.17.1 as well, but doing some perf debugging and found this issue it seems would be good to handle correctly - submitted a PR here: Confirmed, model_size: large IS supposed to use the GPU On a single-GPU system, OpenVINO reports ['CPU', 'GPU'] and the check passes. On my dual-GPU system, it reports ['CPU', 'GPU.0', 'GPU.1'] - the exact string "GPU" isn't in the list, so it returns False and all enrichments fall back to CPU via ONNX Runtime. This means my face recognition and semantic search large models have been running entirely on CPU this whole time, which explains the 77% CPU / 2.4GB RAM. Confirmed. The fix is a one-line change - startswith instead of exact match. Patching it in the running container and testing: The results are dramatic. The detection inference halving from 40-60ms to 19ms is because the Arc A310's compute EUs are no longer contending with CPU-based enrichment overhead (memory bandwidth, cache pressure). With enrichments properly on GPU, everything runs more efficiently. |
|
I am running into a (probably harmless?) If I adjust the permissions of the folder recursively and restart, the log statement goes away. When further previews are created, they do not have the same permissions and the warning returns the folder: no warning: warning: if the files made it to there and are readable, it seems fine, so maybe the probe at startup is just a bit strict? This is an NFS mount on a synology if that is related (my whole frigate storage folder is on this mount) Probably related: #23082 |
|
Now that you mention it, why does the Audio filters section under Audio detection show settings for unselected audio types? What’s the purpose of doing this? The number of entries is far too overwhelming. |
|
I'm currently using the Qwen VL Embedding 2B model for semantic search, but when searching in Chinese within Frigate, the accuracy drops significantly. It seems this is because sqlite-vec is currently set to 768 dimensions, causing a lot of detailed data to be lost. Are there any plans to optimize this in the future? |
|
I am having issues with ... something, I switched out a quadro P400 for an intel Arc B50 due to not being able to process (ffmpeg processes) all of my cameras. I am running Frigate build b712e1f on Unraid 7.3.0, others on reddit have had success using a B50 gpu for other things with this version of Unraid. I have tried QSV and VAAPI presets as well as iHD and Xe for driver selection, though I'm unsure if Xe is a real option. I am not able to get the preview to load on the home page for the camera, but it will playback if I click into it using the config below. I also cannot get a preview of the footage on the Masks/Zones menu nor the camera debug display. I have tried adding cameras via the new gui method, as well as copy pasting from my old config file, and get similar results. I haven't attempted detect yet with the intel card, I have a hailo 8L I had been using for that task previously. I am unsure if re-bar is enabled on this motherboard, I have "Above 4G Decoding" enabled but did not find an option for re-bar in the BIOS. Below are the configuration files and log outputs of a simplified setup, which exhibits the same issue as when I have all of the cameras setup together. Frigate config.yaml mqtt:
enabled: true
host: 192.168.1.40
port: 1883
user:
password:
ffmpeg:
hwaccel_args: preset-vaapi
input_args: preset-rtsp-restream-low-latency
output_args:
record: preset-record-generic-audio-copy
go2rtc:
streams:
Front_Yard_West:
- ffmpeg:rtsp://user:pass@192.168.50.20/cam/realmonitor?channel=1&subtype=0#video=h264#hardware#audio=aac
Front_Yard_West_Sub:
- rtsp://user:pass@192.168.50.20/cam/realmonitor?channel=1&subtype=1
cameras:
Front_Yard_West:
enabled: true
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/Front_Yard_West
roles:
- record
- detects
version: 0.18-0
record:
enabled: true
continuous:
days: 7
detections:
retain:
days: 31
mode: all
alerts:
post_capture: 10
retain:
days: 31
mode: all
motion:
enabled: true
detect:
enabled: falsedocker log output Other PC specs if needed: |
|
I've noticed 2 things with the new chat feature...
|
|
I previously encountered some memory leak issues that would eventually consume all the host machine’s memory, causing the host to crash. To prevent this, I set a maximum memory limit (--memory=20g) in Frigate’s Docker configuration. Below is the last line from
At this point, other Frigate-related processes inside the container are still running, and the container itself remains active. But once the main process is terminated, all functionality becomes unavailable, requiring a manual forced restart of the container. |
|
feedback continued here |


























Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Frigate 0.18 includes many new features, some of which require additional feedback to ensure a smooth user experience. Frigate 0.18 is still under active development and is not recommended for use in production systems (there may be large / breaking bugs).
As we get closer to a beta cycle we are looking to get additional feedback from users in some specific areas so that we may get a better understanding of how things are working and fix any bugs.
We are currently looking for feedback on the following features, all other feedback will be ignored for the time being. If you test any of the following, please leave a note even if it just says that things are working well.
If you experience any bugs with config migration, or bugs with existing 0.17 functionality then please give that feedback as well.
When providing feedback please do so in this discussion, if a new discussion must be created then use the
Beta Supportcategory notBugThe docs are: https://docs-dev.frigate.video/
Note that docs links in the UI in
devbuilds point to the stable docs hostname and may lead to an outdated page or 404s. You can manually add-devto the hostname for the correct link. For example:https://docs.frigate.video/configuration/genai/configbecomeshttps://docs-dev.frigate.video/configuration/genai/configHardware Support
Nvidiadependencies have been updated to support Blackwell and some fixes have been put in place for GPUs in general. Please give any feedback on issues using Nvidia GPUs.Inteldependencies have been updated to support Battlemage GPUs, this includes driver and firmware upgrades, any Intel users experiencing issues with iGPUs or GPUs please give that feedback. Positive feedback about Battlemage GPUs working is welcome as well. Would also be great to collect inference times on GPUs.Config UI
Frigate 0.18 introduces complete UI-based configuration management. The new Settings experience provides:
Please provide any feedback on the above aspects of the Settings UI. One suggested testing method would be to set up a fresh instance of
devto match your existing stable instance's configuration by exclusively using the Settings UI.GenAI Chat
Frigate 0.18 introduces a Chat interface for talking to your configured GenAI provider directly from the Frigate UI. Chat is implemented as a tool-calling LLM agent with access to Frigate-specific tools, so you can ask natural language questions about your cameras, tracked objects, and review activity.
Please provide any feedback on the chat feature, would be great to see cases where it works well and cases where it may have not behaved as expected. When giving feedback please show a clear screenshot as well as info about what model and backend provider was used.
All reactions