-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validate Google PaLM integration Using the API key #18
Comments
The API key feature is still not accessible for the public. |
Hi @Barqawiz @intelligentnode - I believe we can make this easier If this looks useful (we're used in production)- please let me know how we can help. UsagePaLM request curl http://0.0.0.0:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "palm/chat-bison",
"messages": [{"role": "user", "content": "Say this is a test!"}],
"temperature": 0.7
}' gpt-3.5-turbo request curl http://0.0.0.0:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Say this is a test!"}],
"temperature": 0.7
}' claude-2 request curl http://0.0.0.0:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "claude-2",
"messages": [{"role": "user", "content": "Say this is a test!"}],
"temperature": 0.7
}' |
Intelli-node support Google PaLM through the following test branch:
https://github.com/Barqawiz/IntelliNode/tree/google-palm
A call to test Google PaLM model
Google did not release the access to PaLM model except for some users, if you have access to Google generative models please help to test the integration.
Pre request:
Test Expectation:
The text was updated successfully, but these errors were encountered: