Can't get debug logs from GoogleClient.js in v0.7.9-rc #8323
-
Hi, I am not sure what exactly is the issue, but I checked between v0.7.8 and v0.7.9-rc with the same .env file and I no longer see debug log lines that should come from GoogleClient.js. Specifically It might be a silly question, but is there a new Google client implementation that bypasses GoogleClient.js completely? In v0.7.8 I see this:
And in v0.7.9-rc:
Would appreciate any pointers! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
So the issue is that the migration from the existing endpoint system to the Agent framework has finally happened and the agent route now takes care of all frontend requests. This is mentioned here: https://www.librechat.ai/docs/features/agents#whats-next and alluded to in this discussion from April: #7152 (comment) Eventually this PR: #8013 For the Google client, basically it is used only for retrieving options. I wonder will this change as well eventually? With all updates and changes to the app, this might be the most important to developers who are forking the project. I wonder what is the best way to emphasis changes like these, perhaps it is being done in final releases? |
Beta Was this translation helpful? Give feedback.
So the issue is that the migration from the existing endpoint system to the Agent framework has finally happened and the agent route now takes care of all frontend requests. This is mentioned here: https://www.librechat.ai/docs/features/agents#whats-next and alluded to in this discussion from April: #7152 (comment)
Eventually this PR: #8013
And this specific commit sealed the change: 7ad3ef7
For the Google client, basically it is used only for retrieving options. I wonder will this change as well eventually?
With all updates and changes to the app, this might be the most important to developers who are forking the project. I wonder what is the best way to emphasis changes like these, perh…