Unable to establish a secure connection to the Gemini API from VAST Smalltalk (AI Assistant) #201093
Replies: 3 comments
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Hi there, This error usually means the TLS handshake is failing before the request even reaches Google. Here are the three most likely culprits to check in VAST Smalltalk:
Give the certificate path a check first—that usually fixes it! |
Beta Was this translation helpful? Give feedback.
-
|
This looks like an SSL/TLS certificate issue. Here are some things to try:
curl -v https://generativelanguage.googleapis.com/
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
The error usually means the client cannot verify the server certificate. Updating CA certificates fixes it in most cases. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Bug
Body
Hi everyone,
Good day.
I'm currently trying to integrate the Gemini API with VAST Smalltalk for "AI Assistant", but I'm running into an issue when attempting to retrieve the available models.
When I click Refresh in the provider configuration, I receive the following error:
Failed to establish secure connection to https://generativelanguage.googleapis.com/
I've attached a screenshot of the error.
I'm trying to determine whether this is related to:
TLS/SSL support in VAST Smalltalk
HTTP client configuration
Certificate validation or missing CA certificates
Proxy or firewall settings
Or if the Gemini API requires something that VAST's HTTP client doesn't currently support
Has anyone successfully connected to the Gemini API (or another HTTPS REST API with similar security requirements) from VAST Smalltalk?
I'd appreciate any suggestions on:
What I should check first.
Whether additional TLS or certificate configuration is required.
Any examples of connecting to modern HTTPS APIs from VAST.
Thanks in advance for any advice!

Guidelines
Beta Was this translation helpful? Give feedback.
All reactions